home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / perl / 5.10.1 / CGI.pm < prev    next >
Encoding:
Perl POD Document  |  2012-12-11  |  246.8 KB  |  7,910 lines

  1. package CGI;
  2. require 5.004;
  3. use Carp 'croak';
  4.  
  5. # See the bottom of this file for the POD documentation.  Search for the
  6. # string '=head'.
  7.  
  8. # You can run this file through either pod2man or pod2html to produce pretty
  9. # documentation in manual or html file format (these utilities are part of the
  10. # Perl 5 distribution).
  11.  
  12. # Copyright 1995-1998 Lincoln D. Stein.  All rights reserved.
  13. # It may be used and modified freely, but I do request that this copyright
  14. # notice remain attached to the file.  You may modify this module as you 
  15. # wish, but if you redistribute a modified version, please attach a note
  16. # listing the modifications you have made.
  17.  
  18. # The most recent version and complete docs are available at:
  19. #   http://stein.cshl.org/WWW/software/CGI/
  20.  
  21. $CGI::revision = '$Id: CGI.pm,v 1.263 2009/02/11 16:56:37 lstein Exp $';
  22. $CGI::VERSION='3.43';
  23.  
  24. # HARD-CODED LOCATION FOR FILE UPLOAD TEMPORARY FILES.
  25. # UNCOMMENT THIS ONLY IF YOU KNOW WHAT YOU'RE DOING.
  26. # $CGITempFile::TMPDIRECTORY = '/usr/tmp';
  27. use CGI::Util qw(rearrange rearrange_header make_attributes unescape escape expires ebcdic2ascii ascii2ebcdic);
  28.  
  29. #use constant XHTML_DTD => ['-//W3C//DTD XHTML Basic 1.0//EN',
  30. #                           'http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd'];
  31.  
  32. use constant XHTML_DTD => ['-//W3C//DTD XHTML 1.0 Transitional//EN',
  33.                            'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'];
  34.  
  35. {
  36.   local $^W = 0;
  37.   $TAINTED = substr("$0$^X",0,0);
  38. }
  39.  
  40. $MOD_PERL            = 0; # no mod_perl by default
  41.  
  42. #global settings
  43. $POST_MAX            = -1; # no limit to uploaded files
  44. $DISABLE_UPLOADS     = 0;
  45.  
  46. @SAVED_SYMBOLS = ();
  47.  
  48.  
  49. # >>>>> Here are some globals that you might want to adjust <<<<<<
  50. sub initialize_globals {
  51.     # Set this to 1 to enable copious autoloader debugging messages
  52.     $AUTOLOAD_DEBUG = 0;
  53.  
  54.     # Set this to 1 to generate XTML-compatible output
  55.     $XHTML = 1;
  56.  
  57.     # Change this to the preferred DTD to print in start_html()
  58.     # or use default_dtd('text of DTD to use');
  59.     $DEFAULT_DTD = [ '-//W3C//DTD HTML 4.01 Transitional//EN',
  60.              'http://www.w3.org/TR/html4/loose.dtd' ] ;
  61.  
  62.     # Set this to 1 to enable NOSTICKY scripts
  63.     # or: 
  64.     #    1) use CGI qw(-nosticky)
  65.     #    2) $CGI::nosticky(1)
  66.     $NOSTICKY = 0;
  67.  
  68.     # Set this to 1 to enable NPH scripts
  69.     # or: 
  70.     #    1) use CGI qw(-nph)
  71.     #    2) CGI::nph(1)
  72.     #    3) print header(-nph=>1)
  73.     $NPH = 0;
  74.  
  75.     # Set this to 1 to enable debugging from @ARGV
  76.     # Set to 2 to enable debugging from STDIN
  77.     $DEBUG = 1;
  78.  
  79.     # Set this to 1 to make the temporary files created
  80.     # during file uploads safe from prying eyes
  81.     # or do...
  82.     #    1) use CGI qw(:private_tempfiles)
  83.     #    2) CGI::private_tempfiles(1);
  84.     $PRIVATE_TEMPFILES = 0;
  85.  
  86.     # Set this to 1 to generate automatic tab indexes
  87.     $TABINDEX = 0;
  88.  
  89.     # Set this to 1 to cause files uploaded in multipart documents
  90.     # to be closed, instead of caching the file handle
  91.     # or:
  92.     #    1) use CGI qw(:close_upload_files)
  93.     #    2) $CGI::close_upload_files(1);
  94.     # Uploads with many files run out of file handles.
  95.     # Also, for performance, since the file is already on disk,
  96.     # it can just be renamed, instead of read and written.
  97.     $CLOSE_UPLOAD_FILES = 0;
  98.  
  99.     # Automatically determined -- don't change
  100.     $EBCDIC = 0;
  101.  
  102.     # Change this to 1 to suppress redundant HTTP headers
  103.     $HEADERS_ONCE = 0;
  104.  
  105.     # separate the name=value pairs by semicolons rather than ampersands
  106.     $USE_PARAM_SEMICOLONS = 1;
  107.  
  108.     # Do not include undefined params parsed from query string
  109.     # use CGI qw(-no_undef_params);
  110.     $NO_UNDEF_PARAMS = 0;
  111.  
  112.     # return everything as utf-8
  113.     $PARAM_UTF8      = 0;
  114.  
  115.     # Other globals that you shouldn't worry about.
  116.     undef $Q;
  117.     $BEEN_THERE = 0;
  118.     $DTD_PUBLIC_IDENTIFIER = "";
  119.     undef @QUERY_PARAM;
  120.     undef %EXPORT;
  121.     undef $QUERY_CHARSET;
  122.     undef %QUERY_FIELDNAMES;
  123.     undef %QUERY_TMPFILES;
  124.  
  125.     # prevent complaints by mod_perl
  126.     1;
  127. }
  128.  
  129. # ------------------ START OF THE LIBRARY ------------
  130.  
  131. *end_form = \&endform;
  132.  
  133. # make mod_perlhappy
  134. initialize_globals();
  135.  
  136. # FIGURE OUT THE OS WE'RE RUNNING UNDER
  137. # Some systems support the $^O variable.  If not
  138. # available then require() the Config library
  139. unless ($OS) {
  140.     unless ($OS = $^O) {
  141.     require Config;
  142.     $OS = $Config::Config{'osname'};
  143.     }
  144. }
  145. if ($OS =~ /^MSWin/i) {
  146.   $OS = 'WINDOWS';
  147. } elsif ($OS =~ /^VMS/i) {
  148.   $OS = 'VMS';
  149. } elsif ($OS =~ /^dos/i) {
  150.   $OS = 'DOS';
  151. } elsif ($OS =~ /^MacOS/i) {
  152.     $OS = 'MACINTOSH';
  153. } elsif ($OS =~ /^os2/i) {
  154.     $OS = 'OS2';
  155. } elsif ($OS =~ /^epoc/i) {
  156.     $OS = 'EPOC';
  157. } elsif ($OS =~ /^cygwin/i) {
  158.     $OS = 'CYGWIN';
  159. } else {
  160.     $OS = 'UNIX';
  161. }
  162.  
  163. # Some OS logic.  Binary mode enabled on DOS, NT and VMS
  164. $needs_binmode = $OS=~/^(WINDOWS|DOS|OS2|MSWin|CYGWIN)/;
  165.  
  166. # This is the default class for the CGI object to use when all else fails.
  167. $DefaultClass = 'CGI' unless defined $CGI::DefaultClass;
  168.  
  169. # This is where to look for autoloaded routines.
  170. $AutoloadClass = $DefaultClass unless defined $CGI::AutoloadClass;
  171.  
  172. # The path separator is a slash, backslash or semicolon, depending
  173. # on the paltform.
  174. $SL = {
  175.      UNIX    => '/',  OS2 => '\\', EPOC      => '/', CYGWIN => '/',
  176.      WINDOWS => '\\', DOS => '\\', MACINTOSH => ':', VMS    => '/'
  177.     }->{$OS};
  178.  
  179. # This no longer seems to be necessary
  180. # Turn on NPH scripts by default when running under IIS server!
  181. # $NPH++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
  182. $IIS++ if defined($ENV{'SERVER_SOFTWARE'}) && $ENV{'SERVER_SOFTWARE'}=~/IIS/;
  183.  
  184. # Turn on special checking for Doug MacEachern's modperl
  185. if (exists $ENV{MOD_PERL}) {
  186.   # mod_perl handlers may run system() on scripts using CGI.pm;
  187.   # Make sure so we don't get fooled by inherited $ENV{MOD_PERL}
  188.   if (exists $ENV{MOD_PERL_API_VERSION} && $ENV{MOD_PERL_API_VERSION} == 2) {
  189.     $MOD_PERL = 2;
  190.     require Apache2::Response;
  191.     require Apache2::RequestRec;
  192.     require Apache2::RequestUtil;
  193.     require Apache2::RequestIO;
  194.     require APR::Pool;
  195.   } else {
  196.     $MOD_PERL = 1;
  197.     require Apache;
  198.   }
  199. }
  200.  
  201. # Turn on special checking for ActiveState's PerlEx
  202. $PERLEX++ if defined($ENV{'GATEWAY_INTERFACE'}) && $ENV{'GATEWAY_INTERFACE'} =~ /^CGI-PerlEx/;
  203.  
  204. # Define the CRLF sequence.  I can't use a simple "\r\n" because the meaning
  205. # of "\n" is different on different OS's (sometimes it generates CRLF, sometimes LF
  206. # and sometimes CR).  The most popular VMS web server
  207. # doesn't accept CRLF -- instead it wants a LR.  EBCDIC machines don't
  208. # use ASCII, so \015\012 means something different.  I find this all 
  209. # really annoying.
  210. $EBCDIC = "\t" ne "\011";
  211. if ($OS eq 'VMS') {
  212.   $CRLF = "\n";
  213. } elsif ($EBCDIC) {
  214.   $CRLF= "\r\n";
  215. } else {
  216.   $CRLF = "\015\012";
  217. }
  218.  
  219. if ($needs_binmode) {
  220.     $CGI::DefaultClass->binmode(\*main::STDOUT);
  221.     $CGI::DefaultClass->binmode(\*main::STDIN);
  222.     $CGI::DefaultClass->binmode(\*main::STDERR);
  223. }
  224.  
  225. %EXPORT_TAGS = (
  226.         ':html2'=>['h1'..'h6',qw/p br hr ol ul li dl dt dd menu code var strong em
  227.                tt u i b blockquote pre img a address cite samp dfn html head
  228.                base body Link nextid title meta kbd start_html end_html
  229.                input Select option comment charset escapeHTML/],
  230.         ':html3'=>[qw/div table caption th td TR Tr sup Sub strike applet Param nobr
  231.                embed basefont style span layer ilayer font frameset frame script small big Area Map/],
  232.                 ':html4'=>[qw/abbr acronym bdo col colgroup del fieldset iframe
  233.                             ins label legend noframes noscript object optgroup Q 
  234.                             thead tbody tfoot/], 
  235.         ':netscape'=>[qw/blink fontsize center/],
  236.         ':form'=>[qw/textfield textarea filefield password_field hidden checkbox checkbox_group 
  237.               submit reset defaults radio_group popup_menu button autoEscape
  238.               scrolling_list image_button start_form end_form startform endform
  239.               start_multipart_form end_multipart_form isindex tmpFileName uploadInfo URL_ENCODED MULTIPART/],
  240.         ':cgi'=>[qw/param upload path_info path_translated request_uri url self_url script_name 
  241.              cookie Dump
  242.              raw_cookie request_method query_string Accept user_agent remote_host content_type
  243.              remote_addr referer server_name server_software server_port server_protocol virtual_port
  244.              virtual_host remote_ident auth_type http append
  245.              save_parameters restore_parameters param_fetch
  246.              remote_user user_name header redirect import_names put 
  247.              Delete Delete_all url_param cgi_error/],
  248.         ':ssl' => [qw/https/],
  249.         ':cgi-lib' => [qw/ReadParse PrintHeader HtmlTop HtmlBot SplitParam Vars/],
  250.         ':html' => [qw/:html2 :html3 :html4 :netscape/],
  251.         ':standard' => [qw/:html2 :html3 :html4 :form :cgi/],
  252.         ':push' => [qw/multipart_init multipart_start multipart_end multipart_final/],
  253.         ':all' => [qw/:html2 :html3 :netscape :form :cgi :internal :html4/]
  254.         );
  255.  
  256. # Custom 'can' method for both autoloaded and non-autoloaded subroutines.
  257. # Author: Cees Hek <cees@sitesuite.com.au>
  258.  
  259. sub can {
  260.     my($class, $method) = @_;
  261.  
  262.     # See if UNIVERSAL::can finds it.
  263.  
  264.     if (my $func = $class -> SUPER::can($method) ){
  265.         return $func;
  266.     }
  267.  
  268.     # Try to compile the function.
  269.  
  270.     eval {
  271.         # _compile looks at $AUTOLOAD for the function name.
  272.  
  273.         local $AUTOLOAD = join "::", $class, $method;
  274.         &_compile;
  275.     };
  276.  
  277.     # Now that the function is loaded (if it exists)
  278.     # just use UNIVERSAL::can again to do the work.
  279.  
  280.     return $class -> SUPER::can($method);
  281. }
  282.  
  283. # to import symbols into caller
  284. sub import {
  285.     my $self = shift;
  286.  
  287.     # This causes modules to clash.
  288.     undef %EXPORT_OK;
  289.     undef %EXPORT;
  290.  
  291.     $self->_setup_symbols(@_);
  292.     my ($callpack, $callfile, $callline) = caller;
  293.  
  294.     # To allow overriding, search through the packages
  295.     # Till we find one in which the correct subroutine is defined.
  296.     my @packages = ($self,@{"$self\:\:ISA"});
  297.     for $sym (keys %EXPORT) {
  298.     my $pck;
  299.     my $def = ${"$self\:\:AutoloadClass"} || $DefaultClass;
  300.     for $pck (@packages) {
  301.         if (defined(&{"$pck\:\:$sym"})) {
  302.         $def = $pck;
  303.         last;
  304.         }
  305.     }
  306.     *{"${callpack}::$sym"} = \&{"$def\:\:$sym"};
  307.     }
  308. }
  309.  
  310. sub compile {
  311.     my $pack = shift;
  312.     $pack->_setup_symbols('-compile',@_);
  313. }
  314.  
  315. sub expand_tags {
  316.     my($tag) = @_;
  317.     return ("start_$1","end_$1") if $tag=~/^(?:\*|start_|end_)(.+)/;
  318.     my(@r);
  319.     return ($tag) unless $EXPORT_TAGS{$tag};
  320.     for (@{$EXPORT_TAGS{$tag}}) {
  321.     push(@r,&expand_tags($_));
  322.     }
  323.     return @r;
  324. }
  325.  
  326. #### Method: new
  327. # The new routine.  This will check the current environment
  328. # for an existing query string, and initialize itself, if so.
  329. ####
  330. sub new {
  331.   my($class,@initializer) = @_;
  332.   my $self = {};
  333.  
  334.   bless $self,ref $class || $class || $DefaultClass;
  335.  
  336.   # always use a tempfile
  337.   $self->{'use_tempfile'} = 1;
  338.  
  339.   if (ref($initializer[0])
  340.       && (UNIVERSAL::isa($initializer[0],'Apache')
  341.       ||
  342.       UNIVERSAL::isa($initializer[0],'Apache2::RequestRec')
  343.      )) {
  344.     $self->r(shift @initializer);
  345.   }
  346.  if (ref($initializer[0]) 
  347.      && (UNIVERSAL::isa($initializer[0],'CODE'))) {
  348.     $self->upload_hook(shift @initializer, shift @initializer);
  349.     $self->{'use_tempfile'} = shift @initializer if (@initializer > 0);
  350.   }
  351.   if ($MOD_PERL) {
  352.     if ($MOD_PERL == 1) {
  353.       $self->r(Apache->request) unless $self->r;
  354.       my $r = $self->r;
  355.       $r->register_cleanup(\&CGI::_reset_globals);
  356.       $self->_setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
  357.     }
  358.     else {
  359.       # XXX: once we have the new API
  360.       # will do a real PerlOptions -SetupEnv check
  361.       $self->r(Apache2::RequestUtil->request) unless $self->r;
  362.       my $r = $self->r;
  363.       $r->subprocess_env unless exists $ENV{REQUEST_METHOD};
  364.       $r->pool->cleanup_register(\&CGI::_reset_globals);
  365.       $self->_setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
  366.     }
  367.     undef $NPH;
  368.   }
  369.   $self->_reset_globals if $PERLEX;
  370.   $self->init(@initializer);
  371.   return $self;
  372. }
  373.  
  374. # We provide a DESTROY method so that we can ensure that
  375. # temporary files are closed (via Fh->DESTROY) before they
  376. # are unlinked (via CGITempFile->DESTROY) because it is not
  377. # possible to unlink an open file on Win32. We explicitly
  378. # call DESTROY on each, rather than just undefing them and
  379. # letting Perl DESTROY them by garbage collection, in case the
  380. # user is still holding any reference to them as well.
  381. sub DESTROY {
  382.   my $self = shift;
  383.   if ($OS eq 'WINDOWS') {
  384.     for my $href (values %{$self->{'.tmpfiles'}}) {
  385.       $href->{hndl}->DESTROY if defined $href->{hndl};
  386.       $href->{name}->DESTROY if defined $href->{name};
  387.     }
  388.   }
  389. }
  390.  
  391. sub r {
  392.   my $self = shift;
  393.   my $r = $self->{'.r'};
  394.   $self->{'.r'} = shift if @_;
  395.   $r;
  396. }
  397.  
  398. sub upload_hook {
  399.   my $self;
  400.   if (ref $_[0] eq 'CODE') {
  401.     $CGI::Q = $self = $CGI::DefaultClass->new(@_);
  402.   } else {
  403.     $self = shift;
  404.   }
  405.   my ($hook,$data,$use_tempfile) = @_;
  406.   $self->{'.upload_hook'} = $hook;
  407.   $self->{'.upload_data'} = $data;
  408.   $self->{'use_tempfile'} = $use_tempfile if defined $use_tempfile;
  409. }
  410.  
  411. #### Method: param
  412. # Returns the value(s)of a named parameter.
  413. # If invoked in a list context, returns the
  414. # entire list.  Otherwise returns the first
  415. # member of the list.
  416. # If name is not provided, return a list of all
  417. # the known parameters names available.
  418. # If more than one argument is provided, the
  419. # second and subsequent arguments are used to
  420. # set the value of the parameter.
  421. ####
  422. sub param {
  423.     my($self,@p) = self_or_default(@_);
  424.     return $self->all_parameters unless @p;
  425.     my($name,$value,@other);
  426.  
  427.     # For compatibility between old calling style and use_named_parameters() style, 
  428.     # we have to special case for a single parameter present.
  429.     if (@p > 1) {
  430.     ($name,$value,@other) = rearrange([NAME,[DEFAULT,VALUE,VALUES]],@p);
  431.     my(@values);
  432.  
  433.     if (substr($p[0],0,1) eq '-') {
  434.         @values = defined($value) ? (ref($value) && ref($value) eq 'ARRAY' ? @{$value} : $value) : ();
  435.     } else {
  436.         for ($value,@other) {
  437.         push(@values,$_) if defined($_);
  438.         }
  439.     }
  440.     # If values is provided, then we set it.
  441.     if (@values or defined $value) {
  442.         $self->add_parameter($name);
  443.         $self->{param}{$name}=[@values];
  444.     }
  445.     } else {
  446.     $name = $p[0];
  447.     }
  448.  
  449.     return unless defined($name) && $self->{param}{$name};
  450.  
  451.     my @result = @{$self->{param}{$name}};
  452.  
  453.     if ($PARAM_UTF8) {
  454.       eval "require Encode; 1;" unless Encode->can('decode'); # bring in these functions
  455.       @result = map {ref $_ ? $_ : Encode::decode(utf8=>$_) } @result;
  456.     }
  457.  
  458.     return wantarray ?  @result : $result[0];
  459. }
  460.  
  461. sub self_or_default {
  462.     return @_ if defined($_[0]) && (!ref($_[0])) &&($_[0] eq 'CGI');
  463.     unless (defined($_[0]) && 
  464.         (ref($_[0]) eq 'CGI' || UNIVERSAL::isa($_[0],'CGI')) # slightly optimized for common case
  465.         ) {
  466.     $Q = $CGI::DefaultClass->new unless defined($Q);
  467.     unshift(@_,$Q);
  468.     }
  469.     return wantarray ? @_ : $Q;
  470. }
  471.  
  472. sub self_or_CGI {
  473.     local $^W=0;                # prevent a warning
  474.     if (defined($_[0]) &&
  475.     (substr(ref($_[0]),0,3) eq 'CGI' 
  476.      || UNIVERSAL::isa($_[0],'CGI'))) {
  477.     return @_;
  478.     } else {
  479.     return ($DefaultClass,@_);
  480.     }
  481. }
  482.  
  483. ########################################
  484. # THESE METHODS ARE MORE OR LESS PRIVATE
  485. # GO TO THE __DATA__ SECTION TO SEE MORE
  486. # PUBLIC METHODS
  487. ########################################
  488.  
  489. # Initialize the query object from the environment.
  490. # If a parameter list is found, this object will be set
  491. # to a hash in which parameter names are keys
  492. # and the values are stored as lists
  493. # If a keyword list is found, this method creates a bogus
  494. # parameter list with the single parameter 'keywords'.
  495.  
  496. sub init {
  497.   my $self = shift;
  498.   my($query_string,$meth,$content_length,$fh,@lines) = ('','','','');
  499.  
  500.   my $is_xforms;
  501.  
  502.   my $initializer = shift;  # for backward compatibility
  503.   local($/) = "\n";
  504.  
  505.     # set autoescaping on by default
  506.     $self->{'escape'} = 1;
  507.  
  508.     # if we get called more than once, we want to initialize
  509.     # ourselves from the original query (which may be gone
  510.     # if it was read from STDIN originally.)
  511.     if (defined(@QUERY_PARAM) && !defined($initializer)) {
  512.         for my $name (@QUERY_PARAM) {
  513.             my $val = $QUERY_PARAM{$name}; # always an arrayref;
  514.             $self->param('-name'=>$name,'-value'=> $val);
  515.             if (defined $val and ref $val eq 'ARRAY') {
  516.                 for my $fh (grep {defined(fileno($_))} @$val) {
  517.                    seek($fh,0,0); # reset the filehandle.  
  518.                 }
  519.  
  520.             }
  521.         }
  522.         $self->charset($QUERY_CHARSET);
  523.         $self->{'.fieldnames'} = {%QUERY_FIELDNAMES};
  524.         $self->{'.tmpfiles'}   = {%QUERY_TMPFILES};
  525.         return;
  526.     }
  527.  
  528.     $meth=$ENV{'REQUEST_METHOD'} if defined($ENV{'REQUEST_METHOD'});
  529.     $content_length = defined($ENV{'CONTENT_LENGTH'}) ? $ENV{'CONTENT_LENGTH'} : 0;
  530.  
  531.     $fh = to_filehandle($initializer) if $initializer;
  532.  
  533.     # set charset to the safe ISO-8859-1
  534.     $self->charset('ISO-8859-1');
  535.  
  536.   METHOD: {
  537.  
  538.       # avoid unreasonably large postings
  539.       if (($POST_MAX > 0) && ($content_length > $POST_MAX)) {
  540.     #discard the post, unread
  541.     $self->cgi_error("413 Request entity too large");
  542.     last METHOD;
  543.       }
  544.  
  545.       # Process multipart postings, but only if the initializer is
  546.       # not defined.
  547.       if ($meth eq 'POST'
  548.       && defined($ENV{'CONTENT_TYPE'})
  549.       && $ENV{'CONTENT_TYPE'}=~m|^multipart/form-data|
  550.       && !defined($initializer)
  551.       ) {
  552.       my($boundary) = $ENV{'CONTENT_TYPE'} =~ /boundary=\"?([^\";,]+)\"?/;
  553.       $self->read_multipart($boundary,$content_length);
  554.       last METHOD;
  555.       } 
  556.  
  557.       # Process XForms postings. We know that we have XForms in the
  558.       # following cases:
  559.       # method eq 'POST' && content-type eq 'application/xml'
  560.       # method eq 'POST' && content-type =~ /multipart\/related.+start=/
  561.       # There are more cases, actually, but for now, we don't support other
  562.       # methods for XForm posts.
  563.       # In a XForm POST, the QUERY_STRING is parsed normally.
  564.       # If the content-type is 'application/xml', we just set the param
  565.       # XForms:Model (referring to the xml syntax) param containing the
  566.       # unparsed XML data.
  567.       # In the case of multipart/related we set XForms:Model as above, but
  568.       # the other parts are available as uploads with the Content-ID as the
  569.       # the key.
  570.       # See the URL below for XForms specs on this issue.
  571.       # http://www.w3.org/TR/2006/REC-xforms-20060314/slice11.html#submit-options
  572.       if ($meth eq 'POST' && defined($ENV{'CONTENT_TYPE'})) {
  573.               if ($ENV{'CONTENT_TYPE'} eq 'application/xml') {
  574.                       my($param) = 'XForms:Model';
  575.                       my($value) = '';
  576.                       $self->add_parameter($param);
  577.                       $self->read_from_client(\$value,$content_length,0)
  578.                         if $content_length > 0;
  579.                       push (@{$self->{param}{$param}},$value);
  580.                       $is_xforms = 1;
  581.               } elsif ($ENV{'CONTENT_TYPE'} =~ /multipart\/related.+boundary=\"?([^\";,]+)\"?.+start=\"?\<?([^\"\>]+)\>?\"?/) {
  582.                       my($boundary,$start) = ($1,$2);
  583.                       my($param) = 'XForms:Model';
  584.                       $self->add_parameter($param);
  585.                       my($value) = $self->read_multipart_related($start,$boundary,$content_length,0);
  586.                       push (@{$self->{param}{$param}},$value);
  587.                       if ($MOD_PERL) {
  588.                               $query_string = $self->r->args;
  589.                       } else {
  590.                               $query_string = $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
  591.                               $query_string ||= $ENV{'REDIRECT_QUERY_STRING'} if defined $ENV{'REDIRECT_QUERY_STRING'};
  592.                       }
  593.                       $is_xforms = 1;
  594.               }
  595.       }
  596.  
  597.  
  598.       # If initializer is defined, then read parameters
  599.       # from it.
  600.       if (!$is_xforms && defined($initializer)) {
  601.       if (UNIVERSAL::isa($initializer,'CGI')) {
  602.           $query_string = $initializer->query_string;
  603.           last METHOD;
  604.       }
  605.       if (ref($initializer) && ref($initializer) eq 'HASH') {
  606.           for (keys %$initializer) {
  607.           $self->param('-name'=>$_,'-value'=>$initializer->{$_});
  608.           }
  609.           last METHOD;
  610.       }
  611.  
  612.           if (defined($fh) && ($fh ne '')) {
  613.               while (<$fh>) {
  614.                   chomp;
  615.                   last if /^=/;
  616.                   push(@lines,$_);
  617.               }
  618.               # massage back into standard format
  619.               if ("@lines" =~ /=/) {
  620.                   $query_string=join("&",@lines);
  621.               } else {
  622.                   $query_string=join("+",@lines);
  623.               }
  624.               last METHOD;
  625.           }
  626.  
  627.       # last chance -- treat it as a string
  628.       $initializer = $$initializer if ref($initializer) eq 'SCALAR';
  629.       $query_string = $initializer;
  630.  
  631.       last METHOD;
  632.       }
  633.  
  634.       # If method is GET or HEAD, fetch the query from
  635.       # the environment.
  636.       if ($is_xforms || $meth=~/^(GET|HEAD)$/) {
  637.       if ($MOD_PERL) {
  638.         $query_string = $self->r->args;
  639.       } else {
  640.           $query_string = $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
  641.           $query_string ||= $ENV{'REDIRECT_QUERY_STRING'} if defined $ENV{'REDIRECT_QUERY_STRING'};
  642.       }
  643.       last METHOD;
  644.       }
  645.  
  646.       if ($meth eq 'POST' || $meth eq 'PUT') {
  647.       $self->read_from_client(\$query_string,$content_length,0)
  648.           if $content_length > 0;
  649.       # Some people want to have their cake and eat it too!
  650.       # Uncomment this line to have the contents of the query string
  651.       # APPENDED to the POST data.
  652.       # $query_string .= (length($query_string) ? '&' : '') . $ENV{'QUERY_STRING'} if defined $ENV{'QUERY_STRING'};
  653.       last METHOD;
  654.       }
  655.  
  656.       # If $meth is not of GET, POST or HEAD, assume we're being debugged offline.
  657.       # Check the command line and then the standard input for data.
  658.       # We use the shellwords package in order to behave the way that
  659.       # UN*X programmers expect.
  660.       if ($DEBUG)
  661.       {
  662.           my $cmdline_ret = read_from_cmdline();
  663.           $query_string = $cmdline_ret->{'query_string'};
  664.           if (defined($cmdline_ret->{'subpath'}))
  665.           {
  666.               $self->path_info($cmdline_ret->{'subpath'});
  667.           }
  668.       }
  669.   }
  670.  
  671. # YL: Begin Change for XML handler 10/19/2001
  672.     if (!$is_xforms && ($meth eq 'POST' || $meth eq 'PUT')
  673.         && defined($ENV{'CONTENT_TYPE'})
  674.         && $ENV{'CONTENT_TYPE'} !~ m|^application/x-www-form-urlencoded|
  675.     && $ENV{'CONTENT_TYPE'} !~ m|^multipart/form-data| ) {
  676.         my($param) = $meth . 'DATA' ;
  677.         $self->add_parameter($param) ;
  678.       push (@{$self->{param}{$param}},$query_string);
  679.       undef $query_string ;
  680.     }
  681. # YL: End Change for XML handler 10/19/2001
  682.  
  683.     # We now have the query string in hand.  We do slightly
  684.     # different things for keyword lists and parameter lists.
  685.     if (defined $query_string && length $query_string) {
  686.     if ($query_string =~ /[&=;]/) {
  687.         $self->parse_params($query_string);
  688.     } else {
  689.         $self->add_parameter('keywords');
  690.         $self->{param}{'keywords'} = [$self->parse_keywordlist($query_string)];
  691.     }
  692.     }
  693.  
  694.     # Special case.  Erase everything if there is a field named
  695.     # .defaults.
  696.     if ($self->param('.defaults')) {
  697.       $self->delete_all();
  698.     }
  699.  
  700.     # hash containing our defined fieldnames
  701.     $self->{'.fieldnames'} = {};
  702.     for ($self->param('.cgifields')) {
  703.     $self->{'.fieldnames'}->{$_}++;
  704.     }
  705.     
  706.     # Clear out our default submission button flag if present
  707.     $self->delete('.submit');
  708.     $self->delete('.cgifields');
  709.  
  710.     $self->save_request unless defined $initializer;
  711. }
  712.  
  713. # FUNCTIONS TO OVERRIDE:
  714. # Turn a string into a filehandle
  715. sub to_filehandle {
  716.     my $thingy = shift;
  717.     return undef unless $thingy;
  718.     return $thingy if UNIVERSAL::isa($thingy,'GLOB');
  719.     return $thingy if UNIVERSAL::isa($thingy,'FileHandle');
  720.     if (!ref($thingy)) {
  721.     my $caller = 1;
  722.     while (my $package = caller($caller++)) {
  723.         my($tmp) = $thingy=~/[\':]/ ? $thingy : "$package\:\:$thingy"; 
  724.         return $tmp if defined(fileno($tmp));
  725.     }
  726.     }
  727.     return undef;
  728. }
  729.  
  730. # send output to the browser
  731. sub put {
  732.     my($self,@p) = self_or_default(@_);
  733.     $self->print(@p);
  734. }
  735.  
  736. # print to standard output (for overriding in mod_perl)
  737. sub print {
  738.     shift;
  739.     CORE::print(@_);
  740. }
  741.  
  742. # get/set last cgi_error
  743. sub cgi_error {
  744.     my ($self,$err) = self_or_default(@_);
  745.     $self->{'.cgi_error'} = $err if defined $err;
  746.     return $self->{'.cgi_error'};
  747. }
  748.  
  749. sub save_request {
  750.     my($self) = @_;
  751.     # We're going to play with the package globals now so that if we get called
  752.     # again, we initialize ourselves in exactly the same way.  This allows
  753.     # us to have several of these objects.
  754.     @QUERY_PARAM = $self->param; # save list of parameters
  755.     for (@QUERY_PARAM) {
  756.       next unless defined $_;
  757.       $QUERY_PARAM{$_}=$self->{param}{$_};
  758.     }
  759.     $QUERY_CHARSET = $self->charset;
  760.     %QUERY_FIELDNAMES = %{$self->{'.fieldnames'}};
  761.     %QUERY_TMPFILES   = %{ $self->{'.tmpfiles'} || {} };
  762. }
  763.  
  764. sub parse_params {
  765.     my($self,$tosplit) = @_;
  766.     my(@pairs) = split(/[&;]/,$tosplit);
  767.     my($param,$value);
  768.     for (@pairs) {
  769.     ($param,$value) = split('=',$_,2);
  770.     next unless defined $param;
  771.     next if $NO_UNDEF_PARAMS and not defined $value;
  772.     $value = '' unless defined $value;
  773.     $param = unescape($param);
  774.     $value = unescape($value);
  775.     $self->add_parameter($param);
  776.     push (@{$self->{param}{$param}},$value);
  777.     }
  778. }
  779.  
  780. sub add_parameter {
  781.     my($self,$param)=@_;
  782.     return unless defined $param;
  783.     push (@{$self->{'.parameters'}},$param) 
  784.     unless defined($self->{param}{$param});
  785. }
  786.  
  787. sub all_parameters {
  788.     my $self = shift;
  789.     return () unless defined($self) && $self->{'.parameters'};
  790.     return () unless @{$self->{'.parameters'}};
  791.     return @{$self->{'.parameters'}};
  792. }
  793.  
  794. # put a filehandle into binary mode (DOS)
  795. sub binmode {
  796.     return unless defined($_[1]) && defined fileno($_[1]);
  797.     CORE::binmode($_[1]);
  798. }
  799.  
  800. sub _make_tag_func {
  801.     my ($self,$tagname) = @_;
  802.     my $func = qq(
  803.     sub $tagname {
  804.          my (\$q,\$a,\@rest) = self_or_default(\@_);
  805.          my(\$attr) = '';
  806.      if (ref(\$a) && ref(\$a) eq 'HASH') {
  807.         my(\@attr) = make_attributes(\$a,\$q->{'escape'});
  808.         \$attr = " \@attr" if \@attr;
  809.       } else {
  810.         unshift \@rest,\$a if defined \$a;
  811.       }
  812.     );
  813.     if ($tagname=~/start_(\w+)/i) {
  814.     $func .= qq! return "<\L$1\E\$attr>";} !;
  815.     } elsif ($tagname=~/end_(\w+)/i) {
  816.     $func .= qq! return "<\L/$1\E>"; } !;
  817.     } else {
  818.     $func .= qq#
  819.         return \$XHTML ? "\L<$tagname\E\$attr />" : "\L<$tagname\E\$attr>" unless \@rest;
  820.         my(\$tag,\$untag) = ("\L<$tagname\E\$attr>","\L</$tagname>\E");
  821.         my \@result = map { "\$tag\$_\$untag" } 
  822.                               (ref(\$rest[0]) eq 'ARRAY') ? \@{\$rest[0]} : "\@rest";
  823.         return "\@result";
  824.             }#;
  825.     }
  826. return $func;
  827. }
  828.  
  829. sub AUTOLOAD {
  830.     print STDERR "CGI::AUTOLOAD for $AUTOLOAD\n" if $CGI::AUTOLOAD_DEBUG;
  831.     my $func = &_compile;
  832.     goto &$func;
  833. }
  834.  
  835. sub _compile {
  836.     my($func) = $AUTOLOAD;
  837.     my($pack,$func_name);
  838.     {
  839.     local($1,$2); # this fixes an obscure variable suicide problem.
  840.     $func=~/(.+)::([^:]+)$/;
  841.     ($pack,$func_name) = ($1,$2);
  842.     $pack=~s/::SUPER$//;    # fix another obscure problem
  843.     $pack = ${"$pack\:\:AutoloadClass"} || $CGI::DefaultClass
  844.         unless defined(${"$pack\:\:AUTOLOADED_ROUTINES"});
  845.  
  846.         my($sub) = \%{"$pack\:\:SUBS"};
  847.         unless (%$sub) {
  848.        my($auto) = \${"$pack\:\:AUTOLOADED_ROUTINES"};
  849.        local ($@,$!);
  850.        eval "package $pack; $$auto";
  851.        croak("$AUTOLOAD: $@") if $@;
  852.            $$auto = '';  # Free the unneeded storage (but don't undef it!!!)
  853.        }
  854.        my($code) = $sub->{$func_name};
  855.  
  856.        $code = "sub $AUTOLOAD { }" if (!$code and $func_name eq 'DESTROY');
  857.        if (!$code) {
  858.        (my $base = $func_name) =~ s/^(start_|end_)//i;
  859.        if ($EXPORT{':any'} || 
  860.            $EXPORT{'-any'} ||
  861.            $EXPORT{$base} || 
  862.            (%EXPORT_OK || grep(++$EXPORT_OK{$_},&expand_tags(':html')))
  863.                && $EXPORT_OK{$base}) {
  864.            $code = $CGI::DefaultClass->_make_tag_func($func_name);
  865.        }
  866.        }
  867.        croak("Undefined subroutine $AUTOLOAD\n") unless $code;
  868.        local ($@,$!);
  869.        eval "package $pack; $code";
  870.        if ($@) {
  871.        $@ =~ s/ at .*\n//;
  872.        croak("$AUTOLOAD: $@");
  873.        }
  874.     }       
  875.     CORE::delete($sub->{$func_name});  #free storage
  876.     return "$pack\:\:$func_name";
  877. }
  878.  
  879. sub _selected {
  880.   my $self = shift;
  881.   my $value = shift;
  882.   return '' unless $value;
  883.   return $XHTML ? qq(selected="selected" ) : qq(selected );
  884. }
  885.  
  886. sub _checked {
  887.   my $self = shift;
  888.   my $value = shift;
  889.   return '' unless $value;
  890.   return $XHTML ? qq(checked="checked" ) : qq(checked );
  891. }
  892.  
  893. sub _reset_globals { initialize_globals(); }
  894.  
  895. sub _setup_symbols {
  896.     my $self = shift;
  897.     my $compile = 0;
  898.  
  899.     # to avoid reexporting unwanted variables
  900.     undef %EXPORT;
  901.  
  902.     for (@_) {
  903.     $HEADERS_ONCE++,         next if /^[:-]unique_headers$/;
  904.     $NPH++,                  next if /^[:-]nph$/;
  905.     $NOSTICKY++,             next if /^[:-]nosticky$/;
  906.     $DEBUG=0,                next if /^[:-]no_?[Dd]ebug$/;
  907.     $DEBUG=2,                next if /^[:-][Dd]ebug$/;
  908.     $USE_PARAM_SEMICOLONS++, next if /^[:-]newstyle_urls$/;
  909.     $PARAM_UTF8++,           next if /^[:-]utf8$/;
  910.     $XHTML++,                next if /^[:-]xhtml$/;
  911.     $XHTML=0,                next if /^[:-]no_?xhtml$/;
  912.     $USE_PARAM_SEMICOLONS=0, next if /^[:-]oldstyle_urls$/;
  913.     $PRIVATE_TEMPFILES++,    next if /^[:-]private_tempfiles$/;
  914.     $TABINDEX++,             next if /^[:-]tabindex$/;
  915.     $CLOSE_UPLOAD_FILES++,   next if /^[:-]close_upload_files$/;
  916.     $EXPORT{$_}++,           next if /^[:-]any$/;
  917.     $compile++,              next if /^[:-]compile$/;
  918.     $NO_UNDEF_PARAMS++,      next if /^[:-]no_undef_params$/;
  919.     
  920.     # This is probably extremely evil code -- to be deleted some day.
  921.     if (/^[-]autoload$/) {
  922.         my($pkg) = caller(1);
  923.         *{"${pkg}::AUTOLOAD"} = sub { 
  924.         my($routine) = $AUTOLOAD;
  925.         $routine =~ s/^.*::/CGI::/;
  926.         &$routine;
  927.         };
  928.         next;
  929.     }
  930.  
  931.     for (&expand_tags($_)) {
  932.         tr/a-zA-Z0-9_//cd;  # don't allow weird function names
  933.         $EXPORT{$_}++;
  934.     }
  935.     }
  936.     _compile_all(keys %EXPORT) if $compile;
  937.     @SAVED_SYMBOLS = @_;
  938. }
  939.  
  940. sub charset {
  941.   my ($self,$charset) = self_or_default(@_);
  942.   $self->{'.charset'} = $charset if defined $charset;
  943.   $self->{'.charset'};
  944. }
  945.  
  946. sub element_id {
  947.   my ($self,$new_value) = self_or_default(@_);
  948.   $self->{'.elid'} = $new_value if defined $new_value;
  949.   sprintf('%010d',$self->{'.elid'}++);
  950. }
  951.  
  952. sub element_tab {
  953.   my ($self,$new_value) = self_or_default(@_);
  954.   $self->{'.etab'} ||= 1;
  955.   $self->{'.etab'} = $new_value if defined $new_value;
  956.   my $tab = $self->{'.etab'}++;
  957.   return '' unless $TABINDEX or defined $new_value;
  958.   return qq(tabindex="$tab" );
  959. }
  960.  
  961. ###############################################################################
  962. ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
  963. ###############################################################################
  964. $AUTOLOADED_ROUTINES = '';      # get rid of -w warning
  965. $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
  966.  
  967. %SUBS = (
  968.  
  969. 'URL_ENCODED'=> <<'END_OF_FUNC',
  970. sub URL_ENCODED { 'application/x-www-form-urlencoded'; }
  971. END_OF_FUNC
  972.  
  973. 'MULTIPART' => <<'END_OF_FUNC',
  974. sub MULTIPART {  'multipart/form-data'; }
  975. END_OF_FUNC
  976.  
  977. 'SERVER_PUSH' => <<'END_OF_FUNC',
  978. sub SERVER_PUSH { 'multipart/x-mixed-replace;boundary="' . shift() . '"'; }
  979. END_OF_FUNC
  980.  
  981. 'new_MultipartBuffer' => <<'END_OF_FUNC',
  982. # Create a new multipart buffer
  983. sub new_MultipartBuffer {
  984.     my($self,$boundary,$length) = @_;
  985.     return MultipartBuffer->new($self,$boundary,$length);
  986. }
  987. END_OF_FUNC
  988.  
  989. 'read_from_client' => <<'END_OF_FUNC',
  990. # Read data from a file handle
  991. sub read_from_client {
  992.     my($self, $buff, $len, $offset) = @_;
  993.     local $^W=0;                # prevent a warning
  994.     return $MOD_PERL
  995.         ? $self->r->read($$buff, $len, $offset)
  996.         : read(\*STDIN, $$buff, $len, $offset);
  997. }
  998. END_OF_FUNC
  999.  
  1000. 'delete' => <<'END_OF_FUNC',
  1001. #### Method: delete
  1002. # Deletes the named parameter entirely.
  1003. ####
  1004. sub delete {
  1005.     my($self,@p) = self_or_default(@_);
  1006.     my(@names) = rearrange([NAME],@p);
  1007.     my @to_delete = ref($names[0]) eq 'ARRAY' ? @$names[0] : @names;
  1008.     my %to_delete;
  1009.     for my $name (@to_delete)
  1010.     {
  1011.         CORE::delete $self->{param}{$name};
  1012.         CORE::delete $self->{'.fieldnames'}->{$name};
  1013.         $to_delete{$name}++;
  1014.     }
  1015.     @{$self->{'.parameters'}}=grep { !exists($to_delete{$_}) } $self->param();
  1016.     return;
  1017. }
  1018. END_OF_FUNC
  1019.  
  1020. #### Method: import_names
  1021. # Import all parameters into the given namespace.
  1022. # Assumes namespace 'Q' if not specified
  1023. ####
  1024. 'import_names' => <<'END_OF_FUNC',
  1025. sub import_names {
  1026.     my($self,$namespace,$delete) = self_or_default(@_);
  1027.     $namespace = 'Q' unless defined($namespace);
  1028.     die "Can't import names into \"main\"\n" if \%{"${namespace}::"} == \%::;
  1029.     if ($delete || $MOD_PERL || exists $ENV{'FCGI_ROLE'}) {
  1030.     # can anyone find an easier way to do this?
  1031.     for (keys %{"${namespace}::"}) {
  1032.         local *symbol = "${namespace}::${_}";
  1033.         undef $symbol;
  1034.         undef @symbol;
  1035.         undef %symbol;
  1036.     }
  1037.     }
  1038.     my($param,@value,$var);
  1039.     for $param ($self->param) {
  1040.     # protect against silly names
  1041.     ($var = $param)=~tr/a-zA-Z0-9_/_/c;
  1042.     $var =~ s/^(?=\d)/_/;
  1043.     local *symbol = "${namespace}::$var";
  1044.     @value = $self->param($param);
  1045.     @symbol = @value;
  1046.     $symbol = $value[0];
  1047.     }
  1048. }
  1049. END_OF_FUNC
  1050.  
  1051. #### Method: keywords
  1052. # Keywords acts a bit differently.  Calling it in a list context
  1053. # returns the list of keywords.  
  1054. # Calling it in a scalar context gives you the size of the list.
  1055. ####
  1056. 'keywords' => <<'END_OF_FUNC',
  1057. sub keywords {
  1058.     my($self,@values) = self_or_default(@_);
  1059.     # If values is provided, then we set it.
  1060.     $self->{param}{'keywords'}=[@values] if @values;
  1061.     my(@result) = defined($self->{param}{'keywords'}) ? @{$self->{param}{'keywords'}} : ();
  1062.     @result;
  1063. }
  1064. END_OF_FUNC
  1065.  
  1066. # These are some tie() interfaces for compatibility
  1067. # with Steve Brenner's cgi-lib.pl routines
  1068. 'Vars' => <<'END_OF_FUNC',
  1069. sub Vars {
  1070.     my $q = shift;
  1071.     my %in;
  1072.     tie(%in,CGI,$q);
  1073.     return %in if wantarray;
  1074.     return \%in;
  1075. }
  1076. END_OF_FUNC
  1077.  
  1078. # These are some tie() interfaces for compatibility
  1079. # with Steve Brenner's cgi-lib.pl routines
  1080. 'ReadParse' => <<'END_OF_FUNC',
  1081. sub ReadParse {
  1082.     local(*in);
  1083.     if (@_) {
  1084.     *in = $_[0];
  1085.     } else {
  1086.     my $pkg = caller();
  1087.     *in=*{"${pkg}::in"};
  1088.     }
  1089.     tie(%in,CGI);
  1090.     return scalar(keys %in);
  1091. }
  1092. END_OF_FUNC
  1093.  
  1094. 'PrintHeader' => <<'END_OF_FUNC',
  1095. sub PrintHeader {
  1096.     my($self) = self_or_default(@_);
  1097.     return $self->header();
  1098. }
  1099. END_OF_FUNC
  1100.  
  1101. 'HtmlTop' => <<'END_OF_FUNC',
  1102. sub HtmlTop {
  1103.     my($self,@p) = self_or_default(@_);
  1104.     return $self->start_html(@p);
  1105. }
  1106. END_OF_FUNC
  1107.  
  1108. 'HtmlBot' => <<'END_OF_FUNC',
  1109. sub HtmlBot {
  1110.     my($self,@p) = self_or_default(@_);
  1111.     return $self->end_html(@p);
  1112. }
  1113. END_OF_FUNC
  1114.  
  1115. 'SplitParam' => <<'END_OF_FUNC',
  1116. sub SplitParam {
  1117.     my ($param) = @_;
  1118.     my (@params) = split ("\0", $param);
  1119.     return (wantarray ? @params : $params[0]);
  1120. }
  1121. END_OF_FUNC
  1122.  
  1123. 'MethGet' => <<'END_OF_FUNC',
  1124. sub MethGet {
  1125.     return request_method() eq 'GET';
  1126. }
  1127. END_OF_FUNC
  1128.  
  1129. 'MethPost' => <<'END_OF_FUNC',
  1130. sub MethPost {
  1131.     return request_method() eq 'POST';
  1132. }
  1133. END_OF_FUNC
  1134.  
  1135. 'TIEHASH' => <<'END_OF_FUNC',
  1136. sub TIEHASH {
  1137.     my $class = shift;
  1138.     my $arg   = $_[0];
  1139.     if (ref($arg) && UNIVERSAL::isa($arg,'CGI')) {
  1140.        return $arg;
  1141.     }
  1142.     return $Q ||= $class->new(@_);
  1143. }
  1144. END_OF_FUNC
  1145.  
  1146. 'STORE' => <<'END_OF_FUNC',
  1147. sub STORE {
  1148.     my $self = shift;
  1149.     my $tag  = shift;
  1150.     my $vals = shift;
  1151.     my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
  1152.     $self->param(-name=>$tag,-value=>\@vals);
  1153. }
  1154. END_OF_FUNC
  1155.  
  1156. 'FETCH' => <<'END_OF_FUNC',
  1157. sub FETCH {
  1158.     return $_[0] if $_[1] eq 'CGI';
  1159.     return undef unless defined $_[0]->param($_[1]);
  1160.     return join("\0",$_[0]->param($_[1]));
  1161. }
  1162. END_OF_FUNC
  1163.  
  1164. 'FIRSTKEY' => <<'END_OF_FUNC',
  1165. sub FIRSTKEY {
  1166.     $_[0]->{'.iterator'}=0;
  1167.     $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
  1168. }
  1169. END_OF_FUNC
  1170.  
  1171. 'NEXTKEY' => <<'END_OF_FUNC',
  1172. sub NEXTKEY {
  1173.     $_[0]->{'.parameters'}->[$_[0]->{'.iterator'}++];
  1174. }
  1175. END_OF_FUNC
  1176.  
  1177. 'EXISTS' => <<'END_OF_FUNC',
  1178. sub EXISTS {
  1179.     exists $_[0]->{param}{$_[1]};
  1180. }
  1181. END_OF_FUNC
  1182.  
  1183. 'DELETE' => <<'END_OF_FUNC',
  1184. sub DELETE {
  1185.     $_[0]->delete($_[1]);
  1186. }
  1187. END_OF_FUNC
  1188.  
  1189. 'CLEAR' => <<'END_OF_FUNC',
  1190. sub CLEAR {
  1191.     %{$_[0]}=();
  1192. }
  1193. ####
  1194. END_OF_FUNC
  1195.  
  1196. ####
  1197. # Append a new value to an existing query
  1198. ####
  1199. 'append' => <<'EOF',
  1200. sub append {
  1201.     my($self,@p) = self_or_default(@_);
  1202.     my($name,$value) = rearrange([NAME,[VALUE,VALUES]],@p);
  1203.     my(@values) = defined($value) ? (ref($value) ? @{$value} : $value) : ();
  1204.     if (@values) {
  1205.     $self->add_parameter($name);
  1206.     push(@{$self->{param}{$name}},@values);
  1207.     }
  1208.     return $self->param($name);
  1209. }
  1210. EOF
  1211.  
  1212. #### Method: delete_all
  1213. # Delete all parameters
  1214. ####
  1215. 'delete_all' => <<'EOF',
  1216. sub delete_all {
  1217.     my($self) = self_or_default(@_);
  1218.     my @param = $self->param();
  1219.     $self->delete(@param);
  1220. }
  1221. EOF
  1222.  
  1223. 'Delete' => <<'EOF',
  1224. sub Delete {
  1225.     my($self,@p) = self_or_default(@_);
  1226.     $self->delete(@p);
  1227. }
  1228. EOF
  1229.  
  1230. 'Delete_all' => <<'EOF',
  1231. sub Delete_all {
  1232.     my($self,@p) = self_or_default(@_);
  1233.     $self->delete_all(@p);
  1234. }
  1235. EOF
  1236.  
  1237. #### Method: autoescape
  1238. # If you want to turn off the autoescaping features,
  1239. # call this method with undef as the argument
  1240. 'autoEscape' => <<'END_OF_FUNC',
  1241. sub autoEscape {
  1242.     my($self,$escape) = self_or_default(@_);
  1243.     my $d = $self->{'escape'};
  1244.     $self->{'escape'} = $escape;
  1245.     $d;
  1246. }
  1247. END_OF_FUNC
  1248.  
  1249.  
  1250. #### Method: version
  1251. # Return the current version
  1252. ####
  1253. 'version' => <<'END_OF_FUNC',
  1254. sub version {
  1255.     return $VERSION;
  1256. }
  1257. END_OF_FUNC
  1258.  
  1259. #### Method: url_param
  1260. # Return a parameter in the QUERY_STRING, regardless of
  1261. # whether this was a POST or a GET
  1262. ####
  1263. 'url_param' => <<'END_OF_FUNC',
  1264. sub url_param {
  1265.     my ($self,@p) = self_or_default(@_);
  1266.     my $name = shift(@p);
  1267.     return undef unless exists($ENV{QUERY_STRING});
  1268.     unless (exists($self->{'.url_param'})) {
  1269.     $self->{'.url_param'}={}; # empty hash
  1270.     if ($ENV{QUERY_STRING} =~ /=/) {
  1271.         my(@pairs) = split(/[&;]/,$ENV{QUERY_STRING});
  1272.         my($param,$value);
  1273.         for (@pairs) {
  1274.         ($param,$value) = split('=',$_,2);
  1275.         $param = unescape($param);
  1276.         $value = unescape($value);
  1277.         push(@{$self->{'.url_param'}->{$param}},$value);
  1278.         }
  1279.     } else {
  1280.         $self->{'.url_param'}->{'keywords'} = [$self->parse_keywordlist($ENV{QUERY_STRING})];
  1281.     }
  1282.     }
  1283.     return keys %{$self->{'.url_param'}} unless defined($name);
  1284.     return () unless $self->{'.url_param'}->{$name};
  1285.     return wantarray ? @{$self->{'.url_param'}->{$name}}
  1286.                      : $self->{'.url_param'}->{$name}->[0];
  1287. }
  1288. END_OF_FUNC
  1289.  
  1290. #### Method: Dump
  1291. # Returns a string in which all the known parameter/value 
  1292. # pairs are represented as nested lists, mainly for the purposes 
  1293. # of debugging.
  1294. ####
  1295. 'Dump' => <<'END_OF_FUNC',
  1296. sub Dump {
  1297.     my($self) = self_or_default(@_);
  1298.     my($param,$value,@result);
  1299.     return '<ul></ul>' unless $self->param;
  1300.     push(@result,"<ul>");
  1301.     for $param ($self->param) {
  1302.     my($name)=$self->escapeHTML($param);
  1303.     push(@result,"<li><strong>$param</strong></li>");
  1304.     push(@result,"<ul>");
  1305.     for $value ($self->param($param)) {
  1306.         $value = $self->escapeHTML($value);
  1307.             $value =~ s/\n/<br \/>\n/g;
  1308.         push(@result,"<li>$value</li>");
  1309.     }
  1310.     push(@result,"</ul>");
  1311.     }
  1312.     push(@result,"</ul>");
  1313.     return join("\n",@result);
  1314. }
  1315. END_OF_FUNC
  1316.  
  1317. #### Method as_string
  1318. #
  1319. # synonym for "dump"
  1320. ####
  1321. 'as_string' => <<'END_OF_FUNC',
  1322. sub as_string {
  1323.     &Dump(@_);
  1324. }
  1325. END_OF_FUNC
  1326.  
  1327. #### Method: save
  1328. # Write values out to a filehandle in such a way that they can
  1329. # be reinitialized by the filehandle form of the new() method
  1330. ####
  1331. 'save' => <<'END_OF_FUNC',
  1332. sub save {
  1333.     my($self,$filehandle) = self_or_default(@_);
  1334.     $filehandle = to_filehandle($filehandle);
  1335.     my($param);
  1336.     local($,) = '';  # set print field separator back to a sane value
  1337.     local($\) = '';  # set output line separator to a sane value
  1338.     for $param ($self->param) {
  1339.     my($escaped_param) = escape($param);
  1340.     my($value);
  1341.     for $value ($self->param($param)) {
  1342.         print $filehandle "$escaped_param=",escape("$value"),"\n";
  1343.     }
  1344.     }
  1345.     for (keys %{$self->{'.fieldnames'}}) {
  1346.           print $filehandle ".cgifields=",escape("$_"),"\n";
  1347.     }
  1348.     print $filehandle "=\n";    # end of record
  1349. }
  1350. END_OF_FUNC
  1351.  
  1352.  
  1353. #### Method: save_parameters
  1354. # An alias for save() that is a better name for exportation.
  1355. # Only intended to be used with the function (non-OO) interface.
  1356. ####
  1357. 'save_parameters' => <<'END_OF_FUNC',
  1358. sub save_parameters {
  1359.     my $fh = shift;
  1360.     return save(to_filehandle($fh));
  1361. }
  1362. END_OF_FUNC
  1363.  
  1364. #### Method: restore_parameters
  1365. # A way to restore CGI parameters from an initializer.
  1366. # Only intended to be used with the function (non-OO) interface.
  1367. ####
  1368. 'restore_parameters' => <<'END_OF_FUNC',
  1369. sub restore_parameters {
  1370.     $Q = $CGI::DefaultClass->new(@_);
  1371. }
  1372. END_OF_FUNC
  1373.  
  1374. #### Method: multipart_init
  1375. # Return a Content-Type: style header for server-push
  1376. # This has to be NPH on most web servers, and it is advisable to set $| = 1
  1377. #
  1378. # Many thanks to Ed Jordan <ed@fidalgo.net> for this
  1379. # contribution, updated by Andrew Benham (adsb@bigfoot.com)
  1380. ####
  1381. 'multipart_init' => <<'END_OF_FUNC',
  1382. sub multipart_init {
  1383.     my($self,@p) = self_or_default(@_);
  1384.     my($boundary,@other) = rearrange_header([BOUNDARY],@p);
  1385.     if (!$boundary) {
  1386.         $boundary = '------- =_';
  1387.         my @chrs = ('0'..'9', 'A'..'Z', 'a'..'z');
  1388.         for (1..17) {
  1389.             $boundary .= $chrs[rand(scalar @chrs)];
  1390.         }
  1391.     }
  1392.  
  1393.     $self->{'separator'} = "$CRLF--$boundary$CRLF";
  1394.     $self->{'final_separator'} = "$CRLF--$boundary--$CRLF";
  1395.     $type = SERVER_PUSH($boundary);
  1396.     return $self->header(
  1397.     -nph => 0,
  1398.     -type => $type,
  1399.     (map { split "=", $_, 2 } @other),
  1400.     ) . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $self->multipart_end;
  1401. }
  1402. END_OF_FUNC
  1403.  
  1404.  
  1405. #### Method: multipart_start
  1406. # Return a Content-Type: style header for server-push, start of section
  1407. #
  1408. # Many thanks to Ed Jordan <ed@fidalgo.net> for this
  1409. # contribution, updated by Andrew Benham (adsb@bigfoot.com)
  1410. ####
  1411. 'multipart_start' => <<'END_OF_FUNC',
  1412. sub multipart_start {
  1413.     my(@header);
  1414.     my($self,@p) = self_or_default(@_);
  1415.     my($type,@other) = rearrange([TYPE],@p);
  1416.     $type = $type || 'text/html';
  1417.     push(@header,"Content-Type: $type");
  1418.  
  1419.     # rearrange() was designed for the HTML portion, so we
  1420.     # need to fix it up a little.
  1421.     for (@other) {
  1422.         # Don't use \s because of perl bug 21951
  1423.         next unless my($header,$value) = /([^ \r\n\t=]+)=\"?(.+?)\"?$/;
  1424.     ($_ = $header) =~ s/^(\w)(.*)/$1 . lc ($2) . ': '.$self->unescapeHTML($value)/e;
  1425.     }
  1426.     push(@header,@other);
  1427.     my $header = join($CRLF,@header)."${CRLF}${CRLF}";
  1428.     return $header;
  1429. }
  1430. END_OF_FUNC
  1431.  
  1432.  
  1433. #### Method: multipart_end
  1434. # Return a MIME boundary separator for server-push, end of section
  1435. #
  1436. # Many thanks to Ed Jordan <ed@fidalgo.net> for this
  1437. # contribution
  1438. ####
  1439. 'multipart_end' => <<'END_OF_FUNC',
  1440. sub multipart_end {
  1441.     my($self,@p) = self_or_default(@_);
  1442.     return $self->{'separator'};
  1443. }
  1444. END_OF_FUNC
  1445.  
  1446.  
  1447. #### Method: multipart_final
  1448. # Return a MIME boundary separator for server-push, end of all sections
  1449. #
  1450. # Contributed by Andrew Benham (adsb@bigfoot.com)
  1451. ####
  1452. 'multipart_final' => <<'END_OF_FUNC',
  1453. sub multipart_final {
  1454.     my($self,@p) = self_or_default(@_);
  1455.     return $self->{'final_separator'} . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $CRLF;
  1456. }
  1457. END_OF_FUNC
  1458.  
  1459.  
  1460. #### Method: header
  1461. # Return a Content-Type: style header
  1462. #
  1463. ####
  1464. 'header' => <<'END_OF_FUNC',
  1465. sub header {
  1466.     my($self,@p) = self_or_default(@_);
  1467.     my(@header);
  1468.  
  1469.     return "" if $self->{'.header_printed'}++ and $HEADERS_ONCE;
  1470.  
  1471.     my($type,$status,$cookie,$target,$expires,$nph,$charset,$attachment,$p3p,@other) = 
  1472.     rearrange([['TYPE','CONTENT_TYPE','CONTENT-TYPE'],
  1473.                 'STATUS',['COOKIE','COOKIES'],'TARGET',
  1474.                             'EXPIRES','NPH','CHARSET',
  1475.                             'ATTACHMENT','P3P'],@p);
  1476.  
  1477.     # Since $cookie and $p3p may be array references,
  1478.     # we must stringify them before CR escaping is done.
  1479.     my @cookie;
  1480.     for (ref($cookie) eq 'ARRAY' ? @{$cookie} : $cookie) {
  1481.         my $cs = UNIVERSAL::isa($_,'CGI::Cookie') ? $_->as_string : $_;
  1482.         push(@cookie,$cs) if defined $cs and $cs ne '';
  1483.     }
  1484.     $p3p = join ' ',@$p3p if ref($p3p) eq 'ARRAY';
  1485.  
  1486.     # CR escaping for values, per RFC 822
  1487.     for my $header ($type,$status,@cookie,$target,$expires,$nph,$charset,$attachment,$p3p,@other) {
  1488.         if (defined $header) {
  1489.             # From RFC 822:
  1490.             # Unfolding  is  accomplished  by regarding   CRLF   immediately
  1491.             # followed  by  a  LWSP-char  as equivalent to the LWSP-char.
  1492.             $header =~ s/$CRLF(\s)/$1/g;
  1493.  
  1494.             # All other uses of newlines are invalid input. 
  1495.             if ($header =~ m/$CRLF|\015|\012/) {
  1496.                 # shorten very long values in the diagnostic
  1497.                 $header = substr($header,0,72).'...' if (length $header > 72);
  1498.                 die "Invalid header value contains a newline not followed by whitespace: $header";
  1499.             }
  1500.         } 
  1501.    }
  1502.  
  1503.     $nph     ||= $NPH;
  1504.  
  1505.     $type ||= 'text/html' unless defined($type);
  1506.  
  1507.     if (defined $charset) {
  1508.       $self->charset($charset);
  1509.     } else {
  1510.       $charset = $self->charset if $type =~ /^text\//;
  1511.     }
  1512.    $charset ||= '';
  1513.  
  1514.     # rearrange() was designed for the HTML portion, so we
  1515.     # need to fix it up a little.
  1516.     for (@other) {
  1517.         # Don't use \s because of perl bug 21951
  1518.         next unless my($header,$value) = /([^ \r\n\t=]+)=\"?(.+?)\"?$/s;
  1519.         ($_ = $header) =~ s/^(\w)(.*)/"\u$1\L$2" . ': '.$self->unescapeHTML($value)/e;
  1520.     }
  1521.  
  1522.     $type .= "; charset=$charset"
  1523.       if     $type ne ''
  1524.          and $type !~ /\bcharset\b/
  1525.          and defined $charset
  1526.          and $charset ne '';
  1527.  
  1528.     # Maybe future compatibility.  Maybe not.
  1529.     my $protocol = $ENV{SERVER_PROTOCOL} || 'HTTP/1.0';
  1530.     push(@header,$protocol . ' ' . ($status || '200 OK')) if $nph;
  1531.     push(@header,"Server: " . &server_software()) if $nph;
  1532.  
  1533.     push(@header,"Status: $status") if $status;
  1534.     push(@header,"Window-Target: $target") if $target;
  1535.     push(@header,"P3P: policyref=\"/w3c/p3p.xml\", CP=\"$p3p\"") if $p3p;
  1536.     # push all the cookies -- there may be several
  1537.     push(@header,map {"Set-Cookie: $_"} @cookie);
  1538.     # if the user indicates an expiration time, then we need
  1539.     # both an Expires and a Date header (so that the browser is
  1540.     # uses OUR clock)
  1541.     push(@header,"Expires: " . expires($expires,'http'))
  1542.     if $expires;
  1543.     push(@header,"Date: " . expires(0,'http')) if $expires || $cookie || $nph;
  1544.     push(@header,"Pragma: no-cache") if $self->cache();
  1545.     push(@header,"Content-Disposition: attachment; filename=\"$attachment\"") if $attachment;
  1546.     push(@header,map {ucfirst $_} @other);
  1547.     push(@header,"Content-Type: $type") if $type ne '';
  1548.     my $header = join($CRLF,@header)."${CRLF}${CRLF}";
  1549.     if (($MOD_PERL >= 1) && !$nph) {
  1550.         $self->r->send_cgi_header($header);
  1551.         return '';
  1552.     }
  1553.     return $header;
  1554. }
  1555. END_OF_FUNC
  1556.  
  1557.  
  1558. #### Method: cache
  1559. # Control whether header() will produce the no-cache
  1560. # Pragma directive.
  1561. ####
  1562. 'cache' => <<'END_OF_FUNC',
  1563. sub cache {
  1564.     my($self,$new_value) = self_or_default(@_);
  1565.     $new_value = '' unless $new_value;
  1566.     if ($new_value ne '') {
  1567.     $self->{'cache'} = $new_value;
  1568.     }
  1569.     return $self->{'cache'};
  1570. }
  1571. END_OF_FUNC
  1572.  
  1573.  
  1574. #### Method: redirect
  1575. # Return a Location: style header
  1576. #
  1577. ####
  1578. 'redirect' => <<'END_OF_FUNC',
  1579. sub redirect {
  1580.     my($self,@p) = self_or_default(@_);
  1581.     my($url,$target,$status,$cookie,$nph,@other) = 
  1582.          rearrange([[LOCATION,URI,URL],TARGET,STATUS,['COOKIE','COOKIES'],NPH],@p);
  1583.     $status = '302 Found' unless defined $status;
  1584.     $url ||= $self->self_url;
  1585.     my(@o);
  1586.     for (@other) { tr/\"//d; push(@o,split("=",$_,2)); }
  1587.     unshift(@o,
  1588.      '-Status'  => $status,
  1589.      '-Location'=> $url,
  1590.      '-nph'     => $nph);
  1591.     unshift(@o,'-Target'=>$target) if $target;
  1592.     unshift(@o,'-Type'=>'');
  1593.     my @unescaped;
  1594.     unshift(@unescaped,'-Cookie'=>$cookie) if $cookie;
  1595.     return $self->header((map {$self->unescapeHTML($_)} @o),@unescaped);
  1596. }
  1597. END_OF_FUNC
  1598.  
  1599.  
  1600. #### Method: start_html
  1601. # Canned HTML header
  1602. #
  1603. # Parameters:
  1604. # $title -> (optional) The title for this HTML document (-title)
  1605. # $author -> (optional) e-mail address of the author (-author)
  1606. # $base -> (optional) if set to true, will enter the BASE address of this document
  1607. #          for resolving relative references (-base) 
  1608. # $xbase -> (optional) alternative base at some remote location (-xbase)
  1609. # $target -> (optional) target window to load all links into (-target)
  1610. # $script -> (option) Javascript code (-script)
  1611. # $no_script -> (option) Javascript <noscript> tag (-noscript)
  1612. # $meta -> (optional) Meta information tags
  1613. # $head -> (optional) any other elements you'd like to incorporate into the <head> tag
  1614. #           (a scalar or array ref)
  1615. # $style -> (optional) reference to an external style sheet
  1616. # @other -> (optional) any other named parameters you'd like to incorporate into
  1617. #           the <body> tag.
  1618. ####
  1619. 'start_html' => <<'END_OF_FUNC',
  1620. sub start_html {
  1621.     my($self,@p) = &self_or_default(@_);
  1622.     my($title,$author,$base,$xbase,$script,$noscript,
  1623.         $target,$meta,$head,$style,$dtd,$lang,$encoding,$declare_xml,@other) = 
  1624.     rearrange([TITLE,AUTHOR,BASE,XBASE,SCRIPT,NOSCRIPT,TARGET,
  1625.                    META,HEAD,STYLE,DTD,LANG,ENCODING,DECLARE_XML],@p);
  1626.  
  1627.     $self->element_id(0);
  1628.     $self->element_tab(0);
  1629.  
  1630.     $encoding = lc($self->charset) unless defined $encoding;
  1631.  
  1632.     # Need to sort out the DTD before it's okay to call escapeHTML().
  1633.     my(@result,$xml_dtd);
  1634.     if ($dtd) {
  1635.         if (defined(ref($dtd)) and (ref($dtd) eq 'ARRAY')) {
  1636.             $dtd = $DEFAULT_DTD unless $dtd->[0] =~ m|^-//|;
  1637.         } else {
  1638.             $dtd = $DEFAULT_DTD unless $dtd =~ m|^-//|;
  1639.         }
  1640.     } else {
  1641.         $dtd = $XHTML ? XHTML_DTD : $DEFAULT_DTD;
  1642.     }
  1643.  
  1644.     $xml_dtd++ if ref($dtd) eq 'ARRAY' && $dtd->[0] =~ /\bXHTML\b/i;
  1645.     $xml_dtd++ if ref($dtd) eq '' && $dtd =~ /\bXHTML\b/i;
  1646.     push @result,qq(<?xml version="1.0" encoding="$encoding"?>) if $xml_dtd && $declare_xml;
  1647.  
  1648.     if (ref($dtd) && ref($dtd) eq 'ARRAY') {
  1649.         push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd->[0]"\n\t "$dtd->[1]">));
  1650.     $DTD_PUBLIC_IDENTIFIER = $dtd->[0];
  1651.     } else {
  1652.         push(@result,qq(<!DOCTYPE html\n\tPUBLIC "$dtd">));
  1653.     $DTD_PUBLIC_IDENTIFIER = $dtd;
  1654.     }
  1655.  
  1656.     # Now that we know whether we're using the HTML 3.2 DTD or not, it's okay to
  1657.     # call escapeHTML().  Strangely enough, the title needs to be escaped as
  1658.     # HTML while the author needs to be escaped as a URL.
  1659.     $title = $self->escapeHTML($title || 'Untitled Document');
  1660.     $author = $self->escape($author);
  1661.  
  1662.     if ($DTD_PUBLIC_IDENTIFIER =~ /[^X]HTML (2\.0|3\.2)/i) {
  1663.     $lang = "" unless defined $lang;
  1664.     $XHTML = 0;
  1665.     }
  1666.     else {
  1667.     $lang = 'en-US' unless defined $lang;
  1668.     }
  1669.  
  1670.     my $lang_bits = $lang ne '' ? qq( lang="$lang" xml:lang="$lang") : '';
  1671.     my $meta_bits = qq(<meta http-equiv="Content-Type" content="text/html; charset=$encoding" />) 
  1672.                     if $XHTML && $encoding && !$declare_xml;
  1673.  
  1674.     push(@result,$XHTML ? qq(<html xmlns="http://www.w3.org/1999/xhtml"$lang_bits>\n<head>\n<title>$title</title>)
  1675.                         : ($lang ? qq(<html lang="$lang">) : "<html>")
  1676.                       . "<head><title>$title</title>");
  1677.     if (defined $author) {
  1678.     push(@result,$XHTML ? "<link rev=\"made\" href=\"mailto:$author\" />"
  1679.             : "<link rev=\"made\" href=\"mailto:$author\">");
  1680.     }
  1681.  
  1682.     if ($base || $xbase || $target) {
  1683.     my $href = $xbase || $self->url('-path'=>1);
  1684.     my $t = $target ? qq/ target="$target"/ : '';
  1685.     push(@result,$XHTML ? qq(<base href="$href"$t />) : qq(<base href="$href"$t>));
  1686.     }
  1687.  
  1688.     if ($meta && ref($meta) && (ref($meta) eq 'HASH')) {
  1689.     for (keys %$meta) { push(@result,$XHTML ? qq(<meta name="$_" content="$meta->{$_}" />) 
  1690.             : qq(<meta name="$_" content="$meta->{$_}">)); }
  1691.     }
  1692.  
  1693.     my $meta_bits_set = 0;
  1694.     if( $head ) {
  1695.         if( ref $head ) {
  1696.             push @result, @$head;
  1697.             $meta_bits_set = 1 if grep { /http-equiv=["']Content-Type/i }@$head;
  1698.         }
  1699.         else {
  1700.             push @result, $head;
  1701.             $meta_bits_set = 1 if $head =~ /http-equiv=["']Content-Type/i;
  1702.         }
  1703.     }
  1704.  
  1705.     # handle the infrequently-used -style and -script parameters
  1706.     push(@result,$self->_style($style))   if defined $style;
  1707.     push(@result,$self->_script($script)) if defined $script;
  1708.     push(@result,$meta_bits)              if defined $meta_bits and !$meta_bits_set;
  1709.  
  1710.     # handle -noscript parameter
  1711.     push(@result,<<END) if $noscript;
  1712. <noscript>
  1713. $noscript
  1714. </noscript>
  1715. END
  1716.     ;
  1717.     my($other) = @other ? " @other" : '';
  1718.     push(@result,"</head>\n<body$other>\n");
  1719.     return join("\n",@result);
  1720. }
  1721. END_OF_FUNC
  1722.  
  1723. ### Method: _style
  1724. # internal method for generating a CSS style section
  1725. ####
  1726. '_style' => <<'END_OF_FUNC',
  1727. sub _style {
  1728.     my ($self,$style) = @_;
  1729.     my (@result);
  1730.  
  1731.     my $type = 'text/css';
  1732.     my $rel  = 'stylesheet';
  1733.  
  1734.  
  1735.     my $cdata_start = $XHTML ? "\n<!--/* <![CDATA[ */" : "\n<!-- ";
  1736.     my $cdata_end   = $XHTML ? "\n/* ]]> */-->\n" : " -->\n";
  1737.  
  1738.     my @s = ref($style) eq 'ARRAY' ? @$style : $style;
  1739.     my $other = '';
  1740.  
  1741.     for my $s (@s) {
  1742.       if (ref($s)) {
  1743.        my($src,$code,$verbatim,$stype,$alternate,$foo,@other) =
  1744.            rearrange([qw(SRC CODE VERBATIM TYPE ALTERNATE FOO)],
  1745.                       ('-foo'=>'bar',
  1746.                        ref($s) eq 'ARRAY' ? @$s : %$s));
  1747.        my $type = defined $stype ? $stype : 'text/css';
  1748.        my $rel  = $alternate ? 'alternate stylesheet' : 'stylesheet';
  1749.        $other = "@other" if @other;
  1750.  
  1751.        if (ref($src) eq "ARRAY") # Check to see if the $src variable is an array reference
  1752.        { # If it is, push a LINK tag for each one
  1753.            for $src (@$src)
  1754.          {
  1755.            push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
  1756.                              : qq(<link rel="$rel" type="$type" href="$src"$other>)) if $src;
  1757.          }
  1758.        }
  1759.        else
  1760.        { # Otherwise, push the single -src, if it exists.
  1761.          push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
  1762.                              : qq(<link rel="$rel" type="$type" href="$src"$other>)
  1763.               ) if $src;
  1764.         }
  1765.      if ($verbatim) {
  1766.            my @v = ref($verbatim) eq 'ARRAY' ? @$verbatim : $verbatim;
  1767.            push(@result, "<style type=\"text/css\">\n$_\n</style>") for @v;
  1768.       }
  1769.       my @c = ref($code) eq 'ARRAY' ? @$code : $code if $code;
  1770.       push(@result,style({'type'=>$type},"$cdata_start\n$_\n$cdata_end")) for @c;
  1771.  
  1772.       } else {
  1773.            my $src = $s;
  1774.            push(@result,$XHTML ? qq(<link rel="$rel" type="$type" href="$src" $other/>)
  1775.                                : qq(<link rel="$rel" type="$type" href="$src"$other>));
  1776.       }
  1777.     }
  1778.     @result;
  1779. }
  1780. END_OF_FUNC
  1781.  
  1782. '_script' => <<'END_OF_FUNC',
  1783. sub _script {
  1784.     my ($self,$script) = @_;
  1785.     my (@result);
  1786.  
  1787.     my (@scripts) = ref($script) eq 'ARRAY' ? @$script : ($script);
  1788.     for $script (@scripts) {
  1789.     my($src,$code,$language);
  1790.     if (ref($script)) { # script is a hash
  1791.         ($src,$code,$type) =
  1792.         rearrange(['SRC','CODE',['LANGUAGE','TYPE']],
  1793.                  '-foo'=>'bar',    # a trick to allow the '-' to be omitted
  1794.                  ref($script) eq 'ARRAY' ? @$script : %$script);
  1795.             $type ||= 'text/javascript';
  1796.             unless ($type =~ m!\w+/\w+!) {
  1797.                 $type =~ s/[\d.]+$//;
  1798.                 $type = "text/$type";
  1799.             }
  1800.     } else {
  1801.         ($src,$code,$type) = ('',$script, 'text/javascript');
  1802.     }
  1803.  
  1804.     my $comment = '//';  # javascript by default
  1805.     $comment = '#' if $type=~/perl|tcl/i;
  1806.     $comment = "'" if $type=~/vbscript/i;
  1807.  
  1808.     my ($cdata_start,$cdata_end);
  1809.     if ($XHTML) {
  1810.        $cdata_start    = "$comment<![CDATA[\n";
  1811.        $cdata_end     .= "\n$comment]]>";
  1812.     } else {
  1813.        $cdata_start  =  "\n<!-- Hide script\n";
  1814.        $cdata_end    = $comment;
  1815.        $cdata_end   .= " End script hiding -->\n";
  1816.    }
  1817.      my(@satts);
  1818.      push(@satts,'src'=>$src) if $src;
  1819.      push(@satts,'type'=>$type);
  1820.      $code = $cdata_start . $code . $cdata_end if defined $code;
  1821.      push(@result,$self->script({@satts},$code || ''));
  1822.     }
  1823.     @result;
  1824. }
  1825. END_OF_FUNC
  1826.  
  1827. #### Method: end_html
  1828. # End an HTML document.
  1829. # Trivial method for completeness.  Just returns "</body>"
  1830. ####
  1831. 'end_html' => <<'END_OF_FUNC',
  1832. sub end_html {
  1833.     return "\n</body>\n</html>";
  1834. }
  1835. END_OF_FUNC
  1836.  
  1837.  
  1838. ################################
  1839. # METHODS USED IN BUILDING FORMS
  1840. ################################
  1841.  
  1842. #### Method: isindex
  1843. # Just prints out the isindex tag.
  1844. # Parameters:
  1845. #  $action -> optional URL of script to run
  1846. # Returns:
  1847. #   A string containing a <isindex> tag
  1848. 'isindex' => <<'END_OF_FUNC',
  1849. sub isindex {
  1850.     my($self,@p) = self_or_default(@_);
  1851.     my($action,@other) = rearrange([ACTION],@p);
  1852.     $action = qq/ action="$action"/ if $action;
  1853.     my($other) = @other ? " @other" : '';
  1854.     return $XHTML ? "<isindex$action$other />" : "<isindex$action$other>";
  1855. }
  1856. END_OF_FUNC
  1857.  
  1858.  
  1859. #### Method: startform
  1860. # Start a form
  1861. # Parameters:
  1862. #   $method -> optional submission method to use (GET or POST)
  1863. #   $action -> optional URL of script to run
  1864. #   $enctype ->encoding to use (URL_ENCODED or MULTIPART)
  1865. 'startform' => <<'END_OF_FUNC',
  1866. sub startform {
  1867.     my($self,@p) = self_or_default(@_);
  1868.  
  1869.     my($method,$action,$enctype,@other) = 
  1870.     rearrange([METHOD,ACTION,ENCTYPE],@p);
  1871.  
  1872.     $method  = $self->escapeHTML(lc($method || 'post'));
  1873.     $enctype = $self->escapeHTML($enctype || &URL_ENCODED);
  1874.     if (defined $action) {
  1875.        $action = $self->escapeHTML($action);
  1876.     }
  1877.     else {
  1878.        $action = $self->escapeHTML($self->request_uri || $self->self_url);
  1879.     }
  1880.     $action = qq(action="$action");
  1881.     my($other) = @other ? " @other" : '';
  1882.     $self->{'.parametersToAdd'}={};
  1883.     return qq/<form method="$method" $action enctype="$enctype"$other>\n/;
  1884. }
  1885. END_OF_FUNC
  1886.  
  1887.  
  1888. #### Method: start_form
  1889. # synonym for startform
  1890. 'start_form' => <<'END_OF_FUNC',
  1891. sub start_form {
  1892.     $XHTML ? &start_multipart_form : &startform;
  1893. }
  1894. END_OF_FUNC
  1895.  
  1896. 'end_multipart_form' => <<'END_OF_FUNC',
  1897. sub end_multipart_form {
  1898.     &endform;
  1899. }
  1900. END_OF_FUNC
  1901.  
  1902. #### Method: start_multipart_form
  1903. # synonym for startform
  1904. 'start_multipart_form' => <<'END_OF_FUNC',
  1905. sub start_multipart_form {
  1906.     my($self,@p) = self_or_default(@_);
  1907.     if (defined($p[0]) && substr($p[0],0,1) eq '-') {
  1908.       return $self->startform(-enctype=>&MULTIPART,@p);
  1909.     } else {
  1910.     my($method,$action,@other) = 
  1911.         rearrange([METHOD,ACTION],@p);
  1912.     return $self->startform($method,$action,&MULTIPART,@other);
  1913.     }
  1914. }
  1915. END_OF_FUNC
  1916.  
  1917.  
  1918. #### Method: endform
  1919. # End a form
  1920. 'endform' => <<'END_OF_FUNC',
  1921. sub endform {
  1922.     my($self,@p) = self_or_default(@_);
  1923.     if ( $NOSTICKY ) {
  1924.     return wantarray ? ("</form>") : "\n</form>";
  1925.     } else {
  1926.       if (my @fields = $self->get_fields) {
  1927.          return wantarray ? ("<div>",@fields,"</div>","</form>")
  1928.                           : "<div>".(join '',@fields)."</div>\n</form>";
  1929.       } else {
  1930.          return "</form>";
  1931.       }
  1932.     }
  1933. }
  1934. END_OF_FUNC
  1935.  
  1936.  
  1937. '_textfield' => <<'END_OF_FUNC',
  1938. sub _textfield {
  1939.     my($self,$tag,@p) = self_or_default(@_);
  1940.     my($name,$default,$size,$maxlength,$override,$tabindex,@other) = 
  1941.     rearrange([NAME,[DEFAULT,VALUE,VALUES],SIZE,MAXLENGTH,[OVERRIDE,FORCE],TABINDEX],@p);
  1942.  
  1943.     my $current = $override ? $default : 
  1944.     (defined($self->param($name)) ? $self->param($name) : $default);
  1945.  
  1946.     $current = defined($current) ? $self->escapeHTML($current,1) : '';
  1947.     $name = defined($name) ? $self->escapeHTML($name) : '';
  1948.     my($s) = defined($size) ? qq/ size="$size"/ : '';
  1949.     my($m) = defined($maxlength) ? qq/ maxlength="$maxlength"/ : '';
  1950.     my($other) = @other ? " @other" : '';
  1951.     # this entered at cristy's request to fix problems with file upload fields
  1952.     # and WebTV -- not sure it won't break stuff
  1953.     my($value) = $current ne '' ? qq(value="$current") : '';
  1954.     $tabindex = $self->element_tab($tabindex);
  1955.     return $XHTML ? qq(<input type="$tag" name="$name" $tabindex$value$s$m$other />) 
  1956.                   : qq(<input type="$tag" name="$name" $value$s$m$other>);
  1957. }
  1958. END_OF_FUNC
  1959.  
  1960. #### Method: textfield
  1961. # Parameters:
  1962. #   $name -> Name of the text field
  1963. #   $default -> Optional default value of the field if not
  1964. #                already defined.
  1965. #   $size ->  Optional width of field in characaters.
  1966. #   $maxlength -> Optional maximum number of characters.
  1967. # Returns:
  1968. #   A string containing a <input type="text"> field
  1969. #
  1970. 'textfield' => <<'END_OF_FUNC',
  1971. sub textfield {
  1972.     my($self,@p) = self_or_default(@_);
  1973.     $self->_textfield('text',@p);
  1974. }
  1975. END_OF_FUNC
  1976.  
  1977.  
  1978. #### Method: filefield
  1979. # Parameters:
  1980. #   $name -> Name of the file upload field
  1981. #   $size ->  Optional width of field in characaters.
  1982. #   $maxlength -> Optional maximum number of characters.
  1983. # Returns:
  1984. #   A string containing a <input type="file"> field
  1985. #
  1986. 'filefield' => <<'END_OF_FUNC',
  1987. sub filefield {
  1988.     my($self,@p) = self_or_default(@_);
  1989.     $self->_textfield('file',@p);
  1990. }
  1991. END_OF_FUNC
  1992.  
  1993.  
  1994. #### Method: password
  1995. # Create a "secret password" entry field
  1996. # Parameters:
  1997. #   $name -> Name of the field
  1998. #   $default -> Optional default value of the field if not
  1999. #                already defined.
  2000. #   $size ->  Optional width of field in characters.
  2001. #   $maxlength -> Optional maximum characters that can be entered.
  2002. # Returns:
  2003. #   A string containing a <input type="password"> field
  2004. #
  2005. 'password_field' => <<'END_OF_FUNC',
  2006. sub password_field {
  2007.     my ($self,@p) = self_or_default(@_);
  2008.     $self->_textfield('password',@p);
  2009. }
  2010. END_OF_FUNC
  2011.  
  2012. #### Method: textarea
  2013. # Parameters:
  2014. #   $name -> Name of the text field
  2015. #   $default -> Optional default value of the field if not
  2016. #                already defined.
  2017. #   $rows ->  Optional number of rows in text area
  2018. #   $columns -> Optional number of columns in text area
  2019. # Returns:
  2020. #   A string containing a <textarea></textarea> tag
  2021. #
  2022. 'textarea' => <<'END_OF_FUNC',
  2023. sub textarea {
  2024.     my($self,@p) = self_or_default(@_);
  2025.     my($name,$default,$rows,$cols,$override,$tabindex,@other) =
  2026.     rearrange([NAME,[DEFAULT,VALUE],ROWS,[COLS,COLUMNS],[OVERRIDE,FORCE],TABINDEX],@p);
  2027.  
  2028.     my($current)= $override ? $default :
  2029.     (defined($self->param($name)) ? $self->param($name) : $default);
  2030.  
  2031.     $name = defined($name) ? $self->escapeHTML($name) : '';
  2032.     $current = defined($current) ? $self->escapeHTML($current) : '';
  2033.     my($r) = $rows ? qq/ rows="$rows"/ : '';
  2034.     my($c) = $cols ? qq/ cols="$cols"/ : '';
  2035.     my($other) = @other ? " @other" : '';
  2036.     $tabindex = $self->element_tab($tabindex);
  2037.     return qq{<textarea name="$name" $tabindex$r$c$other>$current</textarea>};
  2038. }
  2039. END_OF_FUNC
  2040.  
  2041.  
  2042. #### Method: button
  2043. # Create a javascript button.
  2044. # Parameters:
  2045. #   $name ->  (optional) Name for the button. (-name)
  2046. #   $value -> (optional) Value of the button when selected (and visible name) (-value)
  2047. #   $onclick -> (optional) Text of the JavaScript to run when the button is
  2048. #                clicked.
  2049. # Returns:
  2050. #   A string containing a <input type="button"> tag
  2051. ####
  2052. 'button' => <<'END_OF_FUNC',
  2053. sub button {
  2054.     my($self,@p) = self_or_default(@_);
  2055.  
  2056.     my($label,$value,$script,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],
  2057.                                     [ONCLICK,SCRIPT],TABINDEX],@p);
  2058.  
  2059.     $label=$self->escapeHTML($label);
  2060.     $value=$self->escapeHTML($value,1);
  2061.     $script=$self->escapeHTML($script);
  2062.  
  2063.     my($name) = '';
  2064.     $name = qq/ name="$label"/ if $label;
  2065.     $value = $value || $label;
  2066.     my($val) = '';
  2067.     $val = qq/ value="$value"/ if $value;
  2068.     $script = qq/ onclick="$script"/ if $script;
  2069.     my($other) = @other ? " @other" : '';
  2070.     $tabindex = $self->element_tab($tabindex);
  2071.     return $XHTML ? qq(<input type="button" $tabindex$name$val$script$other />)
  2072.                   : qq(<input type="button"$name$val$script$other>);
  2073. }
  2074. END_OF_FUNC
  2075.  
  2076.  
  2077. #### Method: submit
  2078. # Create a "submit query" button.
  2079. # Parameters:
  2080. #   $name ->  (optional) Name for the button.
  2081. #   $value -> (optional) Value of the button when selected (also doubles as label).
  2082. #   $label -> (optional) Label printed on the button(also doubles as the value).
  2083. # Returns:
  2084. #   A string containing a <input type="submit"> tag
  2085. ####
  2086. 'submit' => <<'END_OF_FUNC',
  2087. sub submit {
  2088.     my($self,@p) = self_or_default(@_);
  2089.  
  2090.     my($label,$value,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],TABINDEX],@p);
  2091.  
  2092.     $label=$self->escapeHTML($label);
  2093.     $value=$self->escapeHTML($value,1);
  2094.  
  2095.     my $name = $NOSTICKY ? '' : 'name=".submit" ';
  2096.     $name = qq/name="$label" / if defined($label);
  2097.     $value = defined($value) ? $value : $label;
  2098.     my $val = '';
  2099.     $val = qq/value="$value" / if defined($value);
  2100.     $tabindex = $self->element_tab($tabindex);
  2101.     my($other) = @other ? "@other " : '';
  2102.     return $XHTML ? qq(<input type="submit" $tabindex$name$val$other/>)
  2103.                   : qq(<input type="submit" $name$val$other>);
  2104. }
  2105. END_OF_FUNC
  2106.  
  2107.  
  2108. #### Method: reset
  2109. # Create a "reset" button.
  2110. # Parameters:
  2111. #   $name -> (optional) Name for the button.
  2112. # Returns:
  2113. #   A string containing a <input type="reset"> tag
  2114. ####
  2115. 'reset' => <<'END_OF_FUNC',
  2116. sub reset {
  2117.     my($self,@p) = self_or_default(@_);
  2118.     my($label,$value,$tabindex,@other) = rearrange(['NAME',['VALUE','LABEL'],TABINDEX],@p);
  2119.     $label=$self->escapeHTML($label);
  2120.     $value=$self->escapeHTML($value,1);
  2121.     my ($name) = ' name=".reset"';
  2122.     $name = qq/ name="$label"/ if defined($label);
  2123.     $value = defined($value) ? $value : $label;
  2124.     my($val) = '';
  2125.     $val = qq/ value="$value"/ if defined($value);
  2126.     my($other) = @other ? " @other" : '';
  2127.     $tabindex = $self->element_tab($tabindex);
  2128.     return $XHTML ? qq(<input type="reset" $tabindex$name$val$other />)
  2129.                   : qq(<input type="reset"$name$val$other>);
  2130. }
  2131. END_OF_FUNC
  2132.  
  2133.  
  2134. #### Method: defaults
  2135. # Create a "defaults" button.
  2136. # Parameters:
  2137. #   $name -> (optional) Name for the button.
  2138. # Returns:
  2139. #   A string containing a <input type="submit" name=".defaults"> tag
  2140. #
  2141. # Note: this button has a special meaning to the initialization script,
  2142. # and tells it to ERASE the current query string so that your defaults
  2143. # are used again!
  2144. ####
  2145. 'defaults' => <<'END_OF_FUNC',
  2146. sub defaults {
  2147.     my($self,@p) = self_or_default(@_);
  2148.  
  2149.     my($label,$tabindex,@other) = rearrange([[NAME,VALUE],TABINDEX],@p);
  2150.  
  2151.     $label=$self->escapeHTML($label,1);
  2152.     $label = $label || "Defaults";
  2153.     my($value) = qq/ value="$label"/;
  2154.     my($other) = @other ? " @other" : '';
  2155.     $tabindex = $self->element_tab($tabindex);
  2156.     return $XHTML ? qq(<input type="submit" name=".defaults" $tabindex$value$other />)
  2157.                   : qq/<input type="submit" NAME=".defaults"$value$other>/;
  2158. }
  2159. END_OF_FUNC
  2160.  
  2161.  
  2162. #### Method: comment
  2163. # Create an HTML <!-- comment -->
  2164. # Parameters: a string
  2165. 'comment' => <<'END_OF_FUNC',
  2166. sub comment {
  2167.     my($self,@p) = self_or_CGI(@_);
  2168.     return "<!-- @p -->";
  2169. }
  2170. END_OF_FUNC
  2171.  
  2172. #### Method: checkbox
  2173. # Create a checkbox that is not logically linked to any others.
  2174. # The field value is "on" when the button is checked.
  2175. # Parameters:
  2176. #   $name -> Name of the checkbox
  2177. #   $checked -> (optional) turned on by default if true
  2178. #   $value -> (optional) value of the checkbox, 'on' by default
  2179. #   $label -> (optional) a user-readable label printed next to the box.
  2180. #             Otherwise the checkbox name is used.
  2181. # Returns:
  2182. #   A string containing a <input type="checkbox"> field
  2183. ####
  2184. 'checkbox' => <<'END_OF_FUNC',
  2185. sub checkbox {
  2186.     my($self,@p) = self_or_default(@_);
  2187.  
  2188.     my($name,$checked,$value,$label,$labelattributes,$override,$tabindex,@other) =
  2189.        rearrange([NAME,[CHECKED,SELECTED,ON],VALUE,LABEL,LABELATTRIBUTES,
  2190.                    [OVERRIDE,FORCE],TABINDEX],@p);
  2191.  
  2192.     $value = defined $value ? $value : 'on';
  2193.  
  2194.     if (!$override && ($self->{'.fieldnames'}->{$name} || 
  2195.                defined $self->param($name))) {
  2196.     $checked = grep($_ eq $value,$self->param($name)) ? $self->_checked(1) : '';
  2197.     } else {
  2198.     $checked = $self->_checked($checked);
  2199.     }
  2200.     my($the_label) = defined $label ? $label : $name;
  2201.     $name = $self->escapeHTML($name);
  2202.     $value = $self->escapeHTML($value,1);
  2203.     $the_label = $self->escapeHTML($the_label);
  2204.     my($other) = @other ? "@other " : '';
  2205.     $tabindex = $self->element_tab($tabindex);
  2206.     $self->register_parameter($name);
  2207.     return $XHTML ? CGI::label($labelattributes,
  2208.                     qq{<input type="checkbox" name="$name" value="$value" $tabindex$checked$other/>$the_label})
  2209.                   : qq{<input type="checkbox" name="$name" value="$value"$checked$other>$the_label};
  2210. }
  2211. END_OF_FUNC
  2212.  
  2213.  
  2214.  
  2215. # Escape HTML -- used internally
  2216. 'escapeHTML' => <<'END_OF_FUNC',
  2217. sub escapeHTML {
  2218.          # hack to work around  earlier hacks
  2219.          push @_,$_[0] if @_==1 && $_[0] eq 'CGI';
  2220.          my ($self,$toencode,$newlinestoo) = CGI::self_or_default(@_);
  2221.          return undef unless defined($toencode);
  2222.          return $toencode if ref($self) && !$self->{'escape'};
  2223.          $toencode =~ s{&}{&}gso;
  2224.          $toencode =~ s{<}{<}gso;
  2225.          $toencode =~ s{>}{>}gso;
  2226.      if ($DTD_PUBLIC_IDENTIFIER =~ /[^X]HTML 3\.2/i) {
  2227.          # $quot; was accidentally omitted from the HTML 3.2 DTD -- see
  2228.          # <http://validator.w3.org/docs/errors.html#bad-entity> /
  2229.          # <http://lists.w3.org/Archives/Public/www-html/1997Mar/0003.html>.
  2230.          $toencode =~ s{"}{"}gso;
  2231.          }
  2232.          else {
  2233.          $toencode =~ s{"}{"}gso;
  2234.          }
  2235.          # Handle bug in some browsers with Latin charsets
  2236.          if ($self->{'.charset'} &&
  2237.              (uc($self->{'.charset'}) eq 'ISO-8859-1' ||
  2238.               uc($self->{'.charset'}) eq 'WINDOWS-1252'))
  2239.          {
  2240.                 $toencode =~ s{'}{'}gso;
  2241.                 $toencode =~ s{\x8b}{‹}gso;
  2242.                 $toencode =~ s{\x9b}{›}gso;
  2243.                 if (defined $newlinestoo && $newlinestoo) {
  2244.                      $toencode =~ s{\012}{ }gso;
  2245.                      $toencode =~ s{\015}{ }gso;
  2246.                 }
  2247.          }
  2248.          return $toencode;
  2249. }
  2250. END_OF_FUNC
  2251.  
  2252. # unescape HTML -- used internally
  2253. 'unescapeHTML' => <<'END_OF_FUNC',
  2254. sub unescapeHTML {
  2255.     # hack to work around  earlier hacks
  2256.     push @_,$_[0] if @_==1 && $_[0] eq 'CGI';
  2257.     my ($self,$string) = CGI::self_or_default(@_);
  2258.     return undef unless defined($string);
  2259.     my $latin = defined $self->{'.charset'} ? $self->{'.charset'} =~ /^(ISO-8859-1|WINDOWS-1252)$/i
  2260.                                             : 1;
  2261.     # thanks to Randal Schwartz for the correct solution to this one
  2262.     $string=~ s[&(.*?);]{
  2263.     local $_ = $1;
  2264.     /^amp$/i    ? "&" :
  2265.     /^quot$/i    ? '"' :
  2266.         /^gt$/i        ? ">" :
  2267.     /^lt$/i        ? "<" :
  2268.     /^#(\d+)$/ && $latin         ? chr($1) :
  2269.     /^#x([0-9a-f]+)$/i && $latin ? chr(hex($1)) :
  2270.     $_
  2271.     }gex;
  2272.     return $string;
  2273. }
  2274. END_OF_FUNC
  2275.  
  2276. # Internal procedure - don't use
  2277. '_tableize' => <<'END_OF_FUNC',
  2278. sub _tableize {
  2279.     my($rows,$columns,$rowheaders,$colheaders,@elements) = @_;
  2280.     my @rowheaders = $rowheaders ? @$rowheaders : ();
  2281.     my @colheaders = $colheaders ? @$colheaders : ();
  2282.     my($result);
  2283.  
  2284.     if (defined($columns)) {
  2285.     $rows = int(0.99 + @elements/$columns) unless defined($rows);
  2286.     }
  2287.     if (defined($rows)) {
  2288.     $columns = int(0.99 + @elements/$rows) unless defined($columns);
  2289.     }
  2290.  
  2291.     # rearrange into a pretty table
  2292.     $result = "<table>";
  2293.     my($row,$column);
  2294.     unshift(@colheaders,'') if @colheaders && @rowheaders;
  2295.     $result .= "<tr>" if @colheaders;
  2296.     for (@colheaders) {
  2297.     $result .= "<th>$_</th>";
  2298.     }
  2299.     for ($row=0;$row<$rows;$row++) {
  2300.     $result .= "<tr>";
  2301.     $result .= "<th>$rowheaders[$row]</th>" if @rowheaders;
  2302.     for ($column=0;$column<$columns;$column++) {
  2303.         $result .= "<td>" . $elements[$column*$rows + $row] . "</td>"
  2304.         if defined($elements[$column*$rows + $row]);
  2305.     }
  2306.     $result .= "</tr>";
  2307.     }
  2308.     $result .= "</table>";
  2309.     return $result;
  2310. }
  2311. END_OF_FUNC
  2312.  
  2313.  
  2314. #### Method: radio_group
  2315. # Create a list of logically-linked radio buttons.
  2316. # Parameters:
  2317. #   $name -> Common name for all the buttons.
  2318. #   $values -> A pointer to a regular array containing the
  2319. #             values for each button in the group.
  2320. #   $default -> (optional) Value of the button to turn on by default.  Pass '-'
  2321. #               to turn _nothing_ on.
  2322. #   $linebreak -> (optional) Set to true to place linebreaks
  2323. #             between the buttons.
  2324. #   $labels -> (optional)
  2325. #             A pointer to a hash of labels to print next to each checkbox
  2326. #             in the form $label{'value'}="Long explanatory label".
  2327. #             Otherwise the provided values are used as the labels.
  2328. # Returns:
  2329. #   An ARRAY containing a series of <input type="radio"> fields
  2330. ####
  2331. 'radio_group' => <<'END_OF_FUNC',
  2332. sub radio_group {
  2333.     my($self,@p) = self_or_default(@_);
  2334.    $self->_box_group('radio',@p);
  2335. }
  2336. END_OF_FUNC
  2337.  
  2338. #### Method: checkbox_group
  2339. # Create a list of logically-linked checkboxes.
  2340. # Parameters:
  2341. #   $name -> Common name for all the check boxes
  2342. #   $values -> A pointer to a regular array containing the
  2343. #             values for each checkbox in the group.
  2344. #   $defaults -> (optional)
  2345. #             1. If a pointer to a regular array of checkbox values,
  2346. #             then this will be used to decide which
  2347. #             checkboxes to turn on by default.
  2348. #             2. If a scalar, will be assumed to hold the
  2349. #             value of a single checkbox in the group to turn on. 
  2350. #   $linebreak -> (optional) Set to true to place linebreaks
  2351. #             between the buttons.
  2352. #   $labels -> (optional)
  2353. #             A pointer to a hash of labels to print next to each checkbox
  2354. #             in the form $label{'value'}="Long explanatory label".
  2355. #             Otherwise the provided values are used as the labels.
  2356. # Returns:
  2357. #   An ARRAY containing a series of <input type="checkbox"> fields
  2358. ####
  2359.  
  2360. 'checkbox_group' => <<'END_OF_FUNC',
  2361. sub checkbox_group {
  2362.     my($self,@p) = self_or_default(@_);
  2363.    $self->_box_group('checkbox',@p);
  2364. }
  2365. END_OF_FUNC
  2366.  
  2367. '_box_group' => <<'END_OF_FUNC',
  2368. sub _box_group {
  2369.     my $self     = shift;
  2370.     my $box_type = shift;
  2371.  
  2372.     my($name,$values,$defaults,$linebreak,$labels,$labelattributes,
  2373.        $attributes,$rows,$columns,$rowheaders,$colheaders,
  2374.        $override,$nolabels,$tabindex,$disabled,@other) =
  2375.         rearrange([NAME,[VALUES,VALUE],[DEFAULT,DEFAULTS],LINEBREAK,LABELS,LABELATTRIBUTES,
  2376.                        ATTRIBUTES,ROWS,[COLUMNS,COLS],[ROWHEADERS,ROWHEADER],[COLHEADERS,COLHEADER],
  2377.                        [OVERRIDE,FORCE],NOLABELS,TABINDEX,DISABLED
  2378.                   ],@_);
  2379.  
  2380.  
  2381.     my($result,$checked,@elements,@values);
  2382.  
  2383.     @values = $self->_set_values_and_labels($values,\$labels,$name);
  2384.     my %checked = $self->previous_or_default($name,$defaults,$override);
  2385.  
  2386.     # If no check array is specified, check the first by default
  2387.     $checked{$values[0]}++ if $box_type eq 'radio' && !%checked;
  2388.  
  2389.     $name=$self->escapeHTML($name);
  2390.  
  2391.     my %tabs = ();
  2392.     if ($TABINDEX && $tabindex) {
  2393.       if (!ref $tabindex) {
  2394.           $self->element_tab($tabindex);
  2395.       } elsif (ref $tabindex eq 'ARRAY') {
  2396.           %tabs = map {$_=>$self->element_tab} @$tabindex;
  2397.       } elsif (ref $tabindex eq 'HASH') {
  2398.           %tabs = %$tabindex;
  2399.       }
  2400.     }
  2401.     %tabs = map {$_=>$self->element_tab} @values unless %tabs;
  2402.     my $other = @other ? "@other " : '';
  2403.     my $radio_checked;
  2404.  
  2405.     # for disabling groups of radio/checkbox buttons
  2406.     my %disabled;
  2407.     for (@{$disabled}) {
  2408.        $disabled{$_}=1;
  2409.     }
  2410.  
  2411.     for (@values) {
  2412.          my $disable="";
  2413.      if ($disabled{$_}) {
  2414.         $disable="disabled='1'";
  2415.      }
  2416.  
  2417.         my $checkit = $self->_checked($box_type eq 'radio' ? ($checked{$_} && !$radio_checked++)
  2418.                                                            : $checked{$_});
  2419.     my($break);
  2420.     if ($linebreak) {
  2421.           $break = $XHTML ? "<br />" : "<br>";
  2422.     }
  2423.     else {
  2424.       $break = '';
  2425.     }
  2426.     my($label)='';
  2427.     unless (defined($nolabels) && $nolabels) {
  2428.         $label = $_;
  2429.         $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
  2430.         $label = $self->escapeHTML($label,1);
  2431.             $label = "<span style=\"color:gray\">$label</span>" if $disabled{$_};
  2432.     }
  2433.         my $attribs = $self->_set_attributes($_, $attributes);
  2434.         my $tab     = $tabs{$_};
  2435.     $_=$self->escapeHTML($_);
  2436.  
  2437.         if ($XHTML) {
  2438.            push @elements,
  2439.               CGI::label($labelattributes,
  2440.                    qq(<input type="$box_type" name="$name" value="$_" $checkit$other$tab$attribs$disable/>$label)).${break};
  2441.         } else {
  2442.             push(@elements,qq/<input type="$box_type" name="$name" value="$_"$checkit$other$tab$attribs$disable>${label}${break}/);
  2443.         }
  2444.     }
  2445.     $self->register_parameter($name);
  2446.     return wantarray ? @elements : "@elements"
  2447.            unless defined($columns) || defined($rows);
  2448.     return _tableize($rows,$columns,$rowheaders,$colheaders,@elements);
  2449. }
  2450. END_OF_FUNC
  2451.  
  2452.  
  2453. #### Method: popup_menu
  2454. # Create a popup menu.
  2455. # Parameters:
  2456. #   $name -> Name for all the menu
  2457. #   $values -> A pointer to a regular array containing the
  2458. #             text of each menu item.
  2459. #   $default -> (optional) Default item to display
  2460. #   $labels -> (optional)
  2461. #             A pointer to a hash of labels to print next to each checkbox
  2462. #             in the form $label{'value'}="Long explanatory label".
  2463. #             Otherwise the provided values are used as the labels.
  2464. # Returns:
  2465. #   A string containing the definition of a popup menu.
  2466. ####
  2467. 'popup_menu' => <<'END_OF_FUNC',
  2468. sub popup_menu {
  2469.     my($self,@p) = self_or_default(@_);
  2470.  
  2471.     my($name,$values,$default,$labels,$attributes,$override,$tabindex,@other) =
  2472.        rearrange([NAME,[VALUES,VALUE],[DEFAULT,DEFAULTS],LABELS,
  2473.        ATTRIBUTES,[OVERRIDE,FORCE],TABINDEX],@p);
  2474.     my($result,%selected);
  2475.  
  2476.     if (!$override && defined($self->param($name))) {
  2477.     $selected{$self->param($name)}++;
  2478.     } elsif (defined $default) {
  2479.     %selected = map {$_=>1} ref($default) eq 'ARRAY' 
  2480.                                 ? @$default 
  2481.                                 : $default;
  2482.     }
  2483.     $name=$self->escapeHTML($name);
  2484.     my($other) = @other ? " @other" : '';
  2485.  
  2486.     my(@values);
  2487.     @values = $self->_set_values_and_labels($values,\$labels,$name);
  2488.     $tabindex = $self->element_tab($tabindex);
  2489.     $result = qq/<select name="$name" $tabindex$other>\n/;
  2490.     for (@values) {
  2491.         if (/<optgroup/) {
  2492.             for my $v (split(/\n/)) {
  2493.                 my $selectit = $XHTML ? 'selected="selected"' : 'selected';
  2494.         for my $selected (keys %selected) {
  2495.             $v =~ s/(value="$selected")/$selectit $1/;
  2496.         }
  2497.                 $result .= "$v\n";
  2498.             }
  2499.         }
  2500.         else {
  2501.           my $attribs   = $self->_set_attributes($_, $attributes);
  2502.       my($selectit) = $self->_selected($selected{$_});
  2503.       my($label)    = $_;
  2504.       $label        = $labels->{$_} if defined($labels) && defined($labels->{$_});
  2505.       my($value)    = $self->escapeHTML($_);
  2506.       $label        = $self->escapeHTML($label,1);
  2507.           $result      .= "<option${attribs} ${selectit}value=\"$value\">$label</option>\n";
  2508.         }
  2509.     }
  2510.  
  2511.     $result .= "</select>";
  2512.     return $result;
  2513. }
  2514. END_OF_FUNC
  2515.  
  2516.  
  2517. #### Method: optgroup
  2518. # Create a optgroup.
  2519. # Parameters:
  2520. #   $name -> Label for the group
  2521. #   $values -> A pointer to a regular array containing the
  2522. #              values for each option line in the group.
  2523. #   $labels -> (optional)
  2524. #              A pointer to a hash of labels to print next to each item
  2525. #              in the form $label{'value'}="Long explanatory label".
  2526. #              Otherwise the provided values are used as the labels.
  2527. #   $labeled -> (optional)
  2528. #               A true value indicates the value should be used as the label attribute
  2529. #               in the option elements.
  2530. #               The label attribute specifies the option label presented to the user.
  2531. #               This defaults to the content of the <option> element, but the label
  2532. #               attribute allows authors to more easily use optgroup without sacrificing
  2533. #               compatibility with browsers that do not support option groups.
  2534. #   $novals -> (optional)
  2535. #              A true value indicates to suppress the val attribute in the option elements
  2536. # Returns:
  2537. #   A string containing the definition of an option group.
  2538. ####
  2539. 'optgroup' => <<'END_OF_FUNC',
  2540. sub optgroup {
  2541.     my($self,@p) = self_or_default(@_);
  2542.     my($name,$values,$attributes,$labeled,$noval,$labels,@other)
  2543.         = rearrange([NAME,[VALUES,VALUE],ATTRIBUTES,LABELED,NOVALS,LABELS],@p);
  2544.  
  2545.     my($result,@values);
  2546.     @values = $self->_set_values_and_labels($values,\$labels,$name,$labeled,$novals);
  2547.     my($other) = @other ? " @other" : '';
  2548.  
  2549.     $name=$self->escapeHTML($name);
  2550.     $result = qq/<optgroup label="$name"$other>\n/;
  2551.     for (@values) {
  2552.         if (/<optgroup/) {
  2553.             for (split(/\n/)) {
  2554.                 my $selectit = $XHTML ? 'selected="selected"' : 'selected';
  2555.                 s/(value="$selected")/$selectit $1/ if defined $selected;
  2556.                 $result .= "$_\n";
  2557.             }
  2558.         }
  2559.         else {
  2560.             my $attribs = $self->_set_attributes($_, $attributes);
  2561.             my($label) = $_;
  2562.             $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
  2563.             $label=$self->escapeHTML($label);
  2564.             my($value)=$self->escapeHTML($_,1);
  2565.             $result .= $labeled ? $novals ? "<option$attribs label=\"$value\">$label</option>\n"
  2566.                                           : "<option$attribs label=\"$value\" value=\"$value\">$label</option>\n"
  2567.                                 : $novals ? "<option$attribs>$label</option>\n"
  2568.                                           : "<option$attribs value=\"$value\">$label</option>\n";
  2569.         }
  2570.     }
  2571.     $result .= "</optgroup>";
  2572.     return $result;
  2573. }
  2574. END_OF_FUNC
  2575.  
  2576.  
  2577. #### Method: scrolling_list
  2578. # Create a scrolling list.
  2579. # Parameters:
  2580. #   $name -> name for the list
  2581. #   $values -> A pointer to a regular array containing the
  2582. #             values for each option line in the list.
  2583. #   $defaults -> (optional)
  2584. #             1. If a pointer to a regular array of options,
  2585. #             then this will be used to decide which
  2586. #             lines to turn on by default.
  2587. #             2. Otherwise holds the value of the single line to turn on.
  2588. #   $size -> (optional) Size of the list.
  2589. #   $multiple -> (optional) If set, allow multiple selections.
  2590. #   $labels -> (optional)
  2591. #             A pointer to a hash of labels to print next to each checkbox
  2592. #             in the form $label{'value'}="Long explanatory label".
  2593. #             Otherwise the provided values are used as the labels.
  2594. # Returns:
  2595. #   A string containing the definition of a scrolling list.
  2596. ####
  2597. 'scrolling_list' => <<'END_OF_FUNC',
  2598. sub scrolling_list {
  2599.     my($self,@p) = self_or_default(@_);
  2600.     my($name,$values,$defaults,$size,$multiple,$labels,$attributes,$override,$tabindex,@other)
  2601.     = rearrange([NAME,[VALUES,VALUE],[DEFAULTS,DEFAULT],
  2602.           SIZE,MULTIPLE,LABELS,ATTRIBUTES,[OVERRIDE,FORCE],TABINDEX],@p);
  2603.  
  2604.     my($result,@values);
  2605.     @values = $self->_set_values_and_labels($values,\$labels,$name);
  2606.  
  2607.     $size = $size || scalar(@values);
  2608.  
  2609.     my(%selected) = $self->previous_or_default($name,$defaults,$override);
  2610.  
  2611.     my($is_multiple) = $multiple ? qq/ multiple="multiple"/ : '';
  2612.     my($has_size) = $size ? qq/ size="$size"/: '';
  2613.     my($other) = @other ? " @other" : '';
  2614.  
  2615.     $name=$self->escapeHTML($name);
  2616.     $tabindex = $self->element_tab($tabindex);
  2617.     $result = qq/<select name="$name" $tabindex$has_size$is_multiple$other>\n/;
  2618.     for (@values) {
  2619.     my($selectit) = $self->_selected($selected{$_});
  2620.     my($label) = $_;
  2621.     $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
  2622.     $label=$self->escapeHTML($label);
  2623.     my($value)=$self->escapeHTML($_,1);
  2624.         my $attribs = $self->_set_attributes($_, $attributes);
  2625.         $result .= "<option ${selectit}${attribs}value=\"$value\">$label</option>\n";
  2626.     }
  2627.     $result .= "</select>";
  2628.     $self->register_parameter($name);
  2629.     return $result;
  2630. }
  2631. END_OF_FUNC
  2632.  
  2633.  
  2634. #### Method: hidden
  2635. # Parameters:
  2636. #   $name -> Name of the hidden field
  2637. #   @default -> (optional) Initial values of field (may be an array)
  2638. #      or
  2639. #   $default->[initial values of field]
  2640. # Returns:
  2641. #   A string containing a <input type="hidden" name="name" value="value">
  2642. ####
  2643. 'hidden' => <<'END_OF_FUNC',
  2644. sub hidden {
  2645.     my($self,@p) = self_or_default(@_);
  2646.  
  2647.     # this is the one place where we departed from our standard
  2648.     # calling scheme, so we have to special-case (darn)
  2649.     my(@result,@value);
  2650.     my($name,$default,$override,@other) = 
  2651.     rearrange([NAME,[DEFAULT,VALUE,VALUES],[OVERRIDE,FORCE]],@p);
  2652.  
  2653.     my $do_override = 0;
  2654.     if ( ref($p[0]) || substr($p[0],0,1) eq '-') {
  2655.     @value = ref($default) ? @{$default} : $default;
  2656.     $do_override = $override;
  2657.     } else {
  2658.     for ($default,$override,@other) {
  2659.         push(@value,$_) if defined($_);
  2660.     }
  2661.     }
  2662.  
  2663.     # use previous values if override is not set
  2664.     my @prev = $self->param($name);
  2665.     @value = @prev if !$do_override && @prev;
  2666.  
  2667.     $name=$self->escapeHTML($name);
  2668.     for (@value) {
  2669.     $_ = defined($_) ? $self->escapeHTML($_,1) : '';
  2670.     push @result,$XHTML ? qq(<input type="hidden" name="$name" value="$_" @other />)
  2671.                             : qq(<input type="hidden" name="$name" value="$_" @other>);
  2672.     }
  2673.     return wantarray ? @result : join('',@result);
  2674. }
  2675. END_OF_FUNC
  2676.  
  2677.  
  2678. #### Method: image_button
  2679. # Parameters:
  2680. #   $name -> Name of the button
  2681. #   $src ->  URL of the image source
  2682. #   $align -> Alignment style (TOP, BOTTOM or MIDDLE)
  2683. # Returns:
  2684. #   A string containing a <input type="image" name="name" src="url" align="alignment">
  2685. ####
  2686. 'image_button' => <<'END_OF_FUNC',
  2687. sub image_button {
  2688.     my($self,@p) = self_or_default(@_);
  2689.  
  2690.     my($name,$src,$alignment,@other) =
  2691.     rearrange([NAME,SRC,ALIGN],@p);
  2692.  
  2693.     my($align) = $alignment ? " align=\L\"$alignment\"" : '';
  2694.     my($other) = @other ? " @other" : '';
  2695.     $name=$self->escapeHTML($name);
  2696.     return $XHTML ? qq(<input type="image" name="$name" src="$src"$align$other />)
  2697.                   : qq/<input type="image" name="$name" src="$src"$align$other>/;
  2698. }
  2699. END_OF_FUNC
  2700.  
  2701.  
  2702. #### Method: self_url
  2703. # Returns a URL containing the current script and all its
  2704. # param/value pairs arranged as a query.  You can use this
  2705. # to create a link that, when selected, will reinvoke the
  2706. # script with all its state information preserved.
  2707. ####
  2708. 'self_url' => <<'END_OF_FUNC',
  2709. sub self_url {
  2710.     my($self,@p) = self_or_default(@_);
  2711.     return $self->url('-path_info'=>1,'-query'=>1,'-full'=>1,@p);
  2712. }
  2713. END_OF_FUNC
  2714.  
  2715.  
  2716. # This is provided as a synonym to self_url() for people unfortunate
  2717. # enough to have incorporated it into their programs already!
  2718. 'state' => <<'END_OF_FUNC',
  2719. sub state {
  2720.     &self_url;
  2721. }
  2722. END_OF_FUNC
  2723.  
  2724.  
  2725. #### Method: url
  2726. # Like self_url, but doesn't return the query string part of
  2727. # the URL.
  2728. ####
  2729. 'url' => <<'END_OF_FUNC',
  2730. sub url {
  2731.     my($self,@p) = self_or_default(@_);
  2732.     my ($relative,$absolute,$full,$path_info,$query,$base,$rewrite) = 
  2733.     rearrange(['RELATIVE','ABSOLUTE','FULL',['PATH','PATH_INFO'],['QUERY','QUERY_STRING'],'BASE','REWRITE'],@p);
  2734.     my $url  = '';
  2735.     $full++      if $base || !($relative || $absolute);
  2736.     $rewrite++   unless defined $rewrite;
  2737.  
  2738.     my $path        =  $self->path_info;
  2739.     my $script_name =  $self->script_name;
  2740.     my $request_uri =  unescape($self->request_uri) || '';
  2741.     my $query_str   =  $self->query_string;
  2742.  
  2743.     my $rewrite_in_use = $request_uri && $request_uri !~ /^\Q$script_name/;
  2744.     undef $path if $rewrite_in_use && $rewrite;  # path not valid when rewriting active
  2745.  
  2746.     my $uri         =  $rewrite && $request_uri ? $request_uri : $script_name;
  2747.     $uri            =~ s/\?.*$//s;                                # remove query string
  2748.     $uri            =~ s/\Q$ENV{PATH_INFO}\E$// if defined $ENV{PATH_INFO};
  2749. #    $uri            =~ s/\Q$path\E$//      if defined $path;      # remove path
  2750.  
  2751.     if ($full) {
  2752.     my $protocol = $self->protocol();
  2753.     $url = "$protocol://";
  2754.     my $vh = http('x_forwarded_host') || http('host') || '';
  2755.         $vh =~ s/\:\d+$//;  # some clients add the port number (incorrectly). Get rid of it.
  2756.     if ($vh) {
  2757.         $url .= $vh;
  2758.     } else {
  2759.         $url .= server_name();
  2760.     }
  2761.         my $port = $self->server_port;
  2762.     $url .= ":" . $port
  2763.       unless (lc($protocol) eq 'http'  && $port == 80)
  2764.         || (lc($protocol) eq 'https' && $port == 443);
  2765.         return $url if $base;
  2766.     $url .= $uri;
  2767.     } elsif ($relative) {
  2768.     ($url) = $uri =~ m!([^/]+)$!;
  2769.     } elsif ($absolute) {
  2770.     $url = $uri;
  2771.     }
  2772.  
  2773.     $url .= $path         if $path_info and defined $path;
  2774.     $url .= "?$query_str" if $query     and $query_str ne '';
  2775.     $url ||= '';
  2776.     $url =~ s/([^a-zA-Z0-9_.%;&?\/\\:+=~-])/sprintf("%%%02X",ord($1))/eg;
  2777.     return $url;
  2778. }
  2779.  
  2780. END_OF_FUNC
  2781.  
  2782. #### Method: cookie
  2783. # Set or read a cookie from the specified name.
  2784. # Cookie can then be passed to header().
  2785. # Usual rules apply to the stickiness of -value.
  2786. #  Parameters:
  2787. #   -name -> name for this cookie (optional)
  2788. #   -value -> value of this cookie (scalar, array or hash) 
  2789. #   -path -> paths for which this cookie is valid (optional)
  2790. #   -domain -> internet domain in which this cookie is valid (optional)
  2791. #   -secure -> if true, cookie only passed through secure channel (optional)
  2792. #   -expires -> expiry date in format Wdy, DD-Mon-YYYY HH:MM:SS GMT (optional)
  2793. ####
  2794. 'cookie' => <<'END_OF_FUNC',
  2795. sub cookie {
  2796.     my($self,@p) = self_or_default(@_);
  2797.     my($name,$value,$path,$domain,$secure,$expires,$httponly) =
  2798.     rearrange([NAME,[VALUE,VALUES],PATH,DOMAIN,SECURE,EXPIRES,HTTPONLY],@p);
  2799.  
  2800.     require CGI::Cookie;
  2801.  
  2802.     # if no value is supplied, then we retrieve the
  2803.     # value of the cookie, if any.  For efficiency, we cache the parsed
  2804.     # cookies in our state variables.
  2805.     unless ( defined($value) ) {
  2806.     $self->{'.cookies'} = CGI::Cookie->fetch
  2807.         unless $self->{'.cookies'};
  2808.  
  2809.     # If no name is supplied, then retrieve the names of all our cookies.
  2810.     return () unless $self->{'.cookies'};
  2811.     return keys %{$self->{'.cookies'}} unless $name;
  2812.     return () unless $self->{'.cookies'}->{$name};
  2813.     return $self->{'.cookies'}->{$name}->value if defined($name) && $name ne '';
  2814.     }
  2815.  
  2816.     # If we get here, we're creating a new cookie
  2817.     return undef unless defined($name) && $name ne '';    # this is an error
  2818.  
  2819.     my @param;
  2820.     push(@param,'-name'=>$name);
  2821.     push(@param,'-value'=>$value);
  2822.     push(@param,'-domain'=>$domain) if $domain;
  2823.     push(@param,'-path'=>$path) if $path;
  2824.     push(@param,'-expires'=>$expires) if $expires;
  2825.     push(@param,'-secure'=>$secure) if $secure;
  2826.     push(@param,'-httponly'=>$httponly) if $httponly;
  2827.  
  2828.     return new CGI::Cookie(@param);
  2829. }
  2830. END_OF_FUNC
  2831.  
  2832. 'parse_keywordlist' => <<'END_OF_FUNC',
  2833. sub parse_keywordlist {
  2834.     my($self,$tosplit) = @_;
  2835.     $tosplit = unescape($tosplit); # unescape the keywords
  2836.     $tosplit=~tr/+/ /;          # pluses to spaces
  2837.     my(@keywords) = split(/\s+/,$tosplit);
  2838.     return @keywords;
  2839. }
  2840. END_OF_FUNC
  2841.  
  2842. 'param_fetch' => <<'END_OF_FUNC',
  2843. sub param_fetch {
  2844.     my($self,@p) = self_or_default(@_);
  2845.     my($name) = rearrange([NAME],@p);
  2846.     unless (exists($self->{param}{$name})) {
  2847.     $self->add_parameter($name);
  2848.     $self->{param}{$name} = [];
  2849.     }
  2850.     
  2851.     return $self->{param}{$name};
  2852. }
  2853. END_OF_FUNC
  2854.  
  2855. ###############################################
  2856. # OTHER INFORMATION PROVIDED BY THE ENVIRONMENT
  2857. ###############################################
  2858.  
  2859. #### Method: path_info
  2860. # Return the extra virtual path information provided
  2861. # after the URL (if any)
  2862. ####
  2863. 'path_info' => <<'END_OF_FUNC',
  2864. sub path_info {
  2865.     my ($self,$info) = self_or_default(@_);
  2866.     if (defined($info)) {
  2867.     $info = "/$info" if $info ne '' &&  substr($info,0,1) ne '/';
  2868.     $self->{'.path_info'} = $info;
  2869.     } elsif (! defined($self->{'.path_info'}) ) {
  2870.         my (undef,$path_info) = $self->_name_and_path_from_env;
  2871.     $self->{'.path_info'} = $path_info || '';
  2872.     }
  2873.     return $self->{'.path_info'};
  2874. }
  2875. END_OF_FUNC
  2876.  
  2877. # This function returns a potentially modified version of SCRIPT_NAME
  2878. # and PATH_INFO. Some HTTP servers do sanitise the paths in those
  2879. # variables. It is the case of at least Apache 2. If for instance the
  2880. # user requests: /path/./to/script.cgi/x//y/z/../x?y, Apache will set:
  2881. # REQUEST_URI=/path/./to/script.cgi/x//y/z/../x?y
  2882. # SCRIPT_NAME=/path/to/env.cgi
  2883. # PATH_INFO=/x/y/x
  2884. #
  2885. # This is all fine except that some bogus CGI scripts expect
  2886. # PATH_INFO=/http://foo when the user requests
  2887. # http://xxx/script.cgi/http://foo
  2888. #
  2889. # Old versions of this module used to accomodate with those scripts, so
  2890. # this is why we do this here to keep those scripts backward compatible.
  2891. # Basically, we accomodate with those scripts but within limits, that is
  2892. # we only try to preserve the number of / that were provided by the user
  2893. # if $REQUEST_URI and "$SCRIPT_NAME$PATH_INFO" only differ by the number
  2894. # of consecutive /.
  2895. #
  2896. # So for instance, in: http://foo/x//y/script.cgi/a//b, we'll return a
  2897. # script_name of /x//y/script.cgi and a path_info of /a//b, but in:
  2898. # http://foo/./x//z/script.cgi/a/../b//c, we'll return the versions
  2899. # possibly sanitised by the HTTP server, so in the case of Apache 2:
  2900. # script_name == /foo/x/z/script.cgi and path_info == /b/c.
  2901. #
  2902. # Future versions of this module may no longer do that, so one should
  2903. # avoid relying on the browser, proxy, server, and CGI.pm preserving the
  2904. # number of consecutive slashes as no guarantee can be made there.
  2905. '_name_and_path_from_env' => <<'END_OF_FUNC',
  2906. sub _name_and_path_from_env {
  2907.     my $self = shift;
  2908.     my $script_name = $ENV{SCRIPT_NAME}  || '';
  2909.     my $path_info   = $ENV{PATH_INFO}    || '';
  2910.     my $uri         = $self->request_uri || '';
  2911.  
  2912.     $uri =~ s/\?.*//s;
  2913.     $uri = unescape($uri);
  2914.  
  2915.     if ($uri ne "$script_name$path_info") {
  2916.         my $script_name_pattern = quotemeta($script_name);
  2917.         my $path_info_pattern = quotemeta($path_info);
  2918.         $script_name_pattern =~ s{(?:\\/)+}{/+}g;
  2919.         $path_info_pattern =~ s{(?:\\/)+}{/+}g;
  2920.  
  2921.         if ($uri =~ /^($script_name_pattern)($path_info_pattern)$/s) {
  2922.             # REQUEST_URI and SCRIPT_NAME . PATH_INFO only differ by the
  2923.             # numer of consecutive slashes, so we can extract the info from
  2924.             # REQUEST_URI:
  2925.             ($script_name, $path_info) = ($1, $2);
  2926.         }
  2927.     }
  2928.     return ($script_name,$path_info);
  2929. }
  2930. END_OF_FUNC
  2931.  
  2932.  
  2933. #### Method: request_method
  2934. # Returns 'POST', 'GET', 'PUT' or 'HEAD'
  2935. ####
  2936. 'request_method' => <<'END_OF_FUNC',
  2937. sub request_method {
  2938.     return $ENV{'REQUEST_METHOD'};
  2939. }
  2940. END_OF_FUNC
  2941.  
  2942. #### Method: content_type
  2943. # Returns the content_type string
  2944. ####
  2945. 'content_type' => <<'END_OF_FUNC',
  2946. sub content_type {
  2947.     return $ENV{'CONTENT_TYPE'};
  2948. }
  2949. END_OF_FUNC
  2950.  
  2951. #### Method: path_translated
  2952. # Return the physical path information provided
  2953. # by the URL (if any)
  2954. ####
  2955. 'path_translated' => <<'END_OF_FUNC',
  2956. sub path_translated {
  2957.     return $ENV{'PATH_TRANSLATED'};
  2958. }
  2959. END_OF_FUNC
  2960.  
  2961.  
  2962. #### Method: request_uri
  2963. # Return the literal request URI
  2964. ####
  2965. 'request_uri' => <<'END_OF_FUNC',
  2966. sub request_uri {
  2967.     return $ENV{'REQUEST_URI'};
  2968. }
  2969. END_OF_FUNC
  2970.  
  2971.  
  2972. #### Method: query_string
  2973. # Synthesize a query string from our current
  2974. # parameters
  2975. ####
  2976. 'query_string' => <<'END_OF_FUNC',
  2977. sub query_string {
  2978.     my($self) = self_or_default(@_);
  2979.     my($param,$value,@pairs);
  2980.     for $param ($self->param) {
  2981.     my($eparam) = escape($param);
  2982.     for $value ($self->param($param)) {
  2983.         $value = escape($value);
  2984.             next unless defined $value;
  2985.         push(@pairs,"$eparam=$value");
  2986.     }
  2987.     }
  2988.     for (keys %{$self->{'.fieldnames'}}) {
  2989.       push(@pairs,".cgifields=".escape("$_"));
  2990.     }
  2991.     return join($USE_PARAM_SEMICOLONS ? ';' : '&',@pairs);
  2992. }
  2993. END_OF_FUNC
  2994.  
  2995.  
  2996. #### Method: accept
  2997. # Without parameters, returns an array of the
  2998. # MIME types the browser accepts.
  2999. # With a single parameter equal to a MIME
  3000. # type, will return undef if the browser won't
  3001. # accept it, 1 if the browser accepts it but
  3002. # doesn't give a preference, or a floating point
  3003. # value between 0.0 and 1.0 if the browser
  3004. # declares a quantitative score for it.
  3005. # This handles MIME type globs correctly.
  3006. ####
  3007. 'Accept' => <<'END_OF_FUNC',
  3008. sub Accept {
  3009.     my($self,$search) = self_or_CGI(@_);
  3010.     my(%prefs,$type,$pref,$pat);
  3011.     
  3012.     my(@accept) = defined $self->http('accept') 
  3013.                 ? split(',',$self->http('accept'))
  3014.                 : ();
  3015.  
  3016.     for (@accept) {
  3017.     ($pref) = /q=(\d\.\d+|\d+)/;
  3018.     ($type) = m#(\S+/[^;]+)#;
  3019.     next unless $type;
  3020.     $prefs{$type}=$pref || 1;
  3021.     }
  3022.  
  3023.     return keys %prefs unless $search;
  3024.     
  3025.     # if a search type is provided, we may need to
  3026.     # perform a pattern matching operation.
  3027.     # The MIME types use a glob mechanism, which
  3028.     # is easily translated into a perl pattern match
  3029.  
  3030.     # First return the preference for directly supported
  3031.     # types:
  3032.     return $prefs{$search} if $prefs{$search};
  3033.  
  3034.     # Didn't get it, so try pattern matching.
  3035.     for (keys %prefs) {
  3036.     next unless /\*/;       # not a pattern match
  3037.     ($pat = $_) =~ s/([^\w*])/\\$1/g; # escape meta characters
  3038.     $pat =~ s/\*/.*/g; # turn it into a pattern
  3039.     return $prefs{$_} if $search=~/$pat/;
  3040.     }
  3041. }
  3042. END_OF_FUNC
  3043.  
  3044.  
  3045. #### Method: user_agent
  3046. # If called with no parameters, returns the user agent.
  3047. # If called with one parameter, does a pattern match (case
  3048. # insensitive) on the user agent.
  3049. ####
  3050. 'user_agent' => <<'END_OF_FUNC',
  3051. sub user_agent {
  3052.     my($self,$match)=self_or_CGI(@_);
  3053.     return $self->http('user_agent') unless $match;
  3054.     return $self->http('user_agent') =~ /$match/i;
  3055. }
  3056. END_OF_FUNC
  3057.  
  3058.  
  3059. #### Method: raw_cookie
  3060. # Returns the magic cookies for the session.
  3061. # The cookies are not parsed or altered in any way, i.e.
  3062. # cookies are returned exactly as given in the HTTP
  3063. # headers.  If a cookie name is given, only that cookie's
  3064. # value is returned, otherwise the entire raw cookie
  3065. # is returned.
  3066. ####
  3067. 'raw_cookie' => <<'END_OF_FUNC',
  3068. sub raw_cookie {
  3069.     my($self,$key) = self_or_CGI(@_);
  3070.  
  3071.     require CGI::Cookie;
  3072.  
  3073.     if (defined($key)) {
  3074.     $self->{'.raw_cookies'} = CGI::Cookie->raw_fetch
  3075.         unless $self->{'.raw_cookies'};
  3076.  
  3077.     return () unless $self->{'.raw_cookies'};
  3078.     return () unless $self->{'.raw_cookies'}->{$key};
  3079.     return $self->{'.raw_cookies'}->{$key};
  3080.     }
  3081.     return $self->http('cookie') || $ENV{'COOKIE'} || '';
  3082. }
  3083. END_OF_FUNC
  3084.  
  3085. #### Method: virtual_host
  3086. # Return the name of the virtual_host, which
  3087. # is not always the same as the server
  3088. ######
  3089. 'virtual_host' => <<'END_OF_FUNC',
  3090. sub virtual_host {
  3091.     my $vh = http('x_forwarded_host') || http('host') || server_name();
  3092.     $vh =~ s/:\d+$//;        # get rid of port number
  3093.     return $vh;
  3094. }
  3095. END_OF_FUNC
  3096.  
  3097. #### Method: remote_host
  3098. # Return the name of the remote host, or its IP
  3099. # address if unavailable.  If this variable isn't
  3100. # defined, it returns "localhost" for debugging
  3101. # purposes.
  3102. ####
  3103. 'remote_host' => <<'END_OF_FUNC',
  3104. sub remote_host {
  3105.     return $ENV{'REMOTE_HOST'} || $ENV{'REMOTE_ADDR'} 
  3106.     || 'localhost';
  3107. }
  3108. END_OF_FUNC
  3109.  
  3110.  
  3111. #### Method: remote_addr
  3112. # Return the IP addr of the remote host.
  3113. ####
  3114. 'remote_addr' => <<'END_OF_FUNC',
  3115. sub remote_addr {
  3116.     return $ENV{'REMOTE_ADDR'} || '127.0.0.1';
  3117. }
  3118. END_OF_FUNC
  3119.  
  3120.  
  3121. #### Method: script_name
  3122. # Return the partial URL to this script for
  3123. # self-referencing scripts.  Also see
  3124. # self_url(), which returns a URL with all state information
  3125. # preserved.
  3126. ####
  3127. 'script_name' => <<'END_OF_FUNC',
  3128. sub script_name {
  3129.     my ($self,@p) = self_or_default(@_);
  3130.     if (@p) {
  3131.         $self->{'.script_name'} = shift @p;
  3132.     } elsif (!exists $self->{'.script_name'}) {
  3133.         my ($script_name,$path_info) = $self->_name_and_path_from_env();
  3134.         $self->{'.script_name'} = $script_name;
  3135.     }
  3136.     return $self->{'.script_name'};
  3137. }
  3138. END_OF_FUNC
  3139.  
  3140.  
  3141. #### Method: referer
  3142. # Return the HTTP_REFERER: useful for generating
  3143. # a GO BACK button.
  3144. ####
  3145. 'referer' => <<'END_OF_FUNC',
  3146. sub referer {
  3147.     my($self) = self_or_CGI(@_);
  3148.     return $self->http('referer');
  3149. }
  3150. END_OF_FUNC
  3151.  
  3152.  
  3153. #### Method: server_name
  3154. # Return the name of the server
  3155. ####
  3156. 'server_name' => <<'END_OF_FUNC',
  3157. sub server_name {
  3158.     return $ENV{'SERVER_NAME'} || 'localhost';
  3159. }
  3160. END_OF_FUNC
  3161.  
  3162. #### Method: server_software
  3163. # Return the name of the server software
  3164. ####
  3165. 'server_software' => <<'END_OF_FUNC',
  3166. sub server_software {
  3167.     return $ENV{'SERVER_SOFTWARE'} || 'cmdline';
  3168. }
  3169. END_OF_FUNC
  3170.  
  3171. #### Method: virtual_port
  3172. # Return the server port, taking virtual hosts into account
  3173. ####
  3174. 'virtual_port' => <<'END_OF_FUNC',
  3175. sub virtual_port {
  3176.     my($self) = self_or_default(@_);
  3177.     my $vh = $self->http('x_forwarded_host') || $self->http('host');
  3178.     my $protocol = $self->protocol;
  3179.     if ($vh) {
  3180.         return ($vh =~ /:(\d+)$/)[0] || ($protocol eq 'https' ? 443 : 80);
  3181.     } else {
  3182.         return $self->server_port();
  3183.     }
  3184. }
  3185. END_OF_FUNC
  3186.  
  3187. #### Method: server_port
  3188. # Return the tcp/ip port the server is running on
  3189. ####
  3190. 'server_port' => <<'END_OF_FUNC',
  3191. sub server_port {
  3192.     return $ENV{'SERVER_PORT'} || 80; # for debugging
  3193. }
  3194. END_OF_FUNC
  3195.  
  3196. #### Method: server_protocol
  3197. # Return the protocol (usually HTTP/1.0)
  3198. ####
  3199. 'server_protocol' => <<'END_OF_FUNC',
  3200. sub server_protocol {
  3201.     return $ENV{'SERVER_PROTOCOL'} || 'HTTP/1.0'; # for debugging
  3202. }
  3203. END_OF_FUNC
  3204.  
  3205. #### Method: http
  3206. # Return the value of an HTTP variable, or
  3207. # the list of variables if none provided
  3208. ####
  3209. 'http' => <<'END_OF_FUNC',
  3210. sub http {
  3211.     my ($self,$parameter) = self_or_CGI(@_);
  3212.     return $ENV{$parameter} if $parameter=~/^HTTP/;
  3213.     $parameter =~ tr/-/_/;
  3214.     return $ENV{"HTTP_\U$parameter\E"} if $parameter;
  3215.     my(@p);
  3216.     for (keys %ENV) {
  3217.     push(@p,$_) if /^HTTP/;
  3218.     }
  3219.     return @p;
  3220. }
  3221. END_OF_FUNC
  3222.  
  3223. #### Method: https
  3224. # Return the value of HTTPS
  3225. ####
  3226. 'https' => <<'END_OF_FUNC',
  3227. sub https {
  3228.     local($^W)=0;
  3229.     my ($self,$parameter) = self_or_CGI(@_);
  3230.     return $ENV{HTTPS} unless $parameter;
  3231.     return $ENV{$parameter} if $parameter=~/^HTTPS/;
  3232.     $parameter =~ tr/-/_/;
  3233.     return $ENV{"HTTPS_\U$parameter\E"} if $parameter;
  3234.     my(@p);
  3235.     for (keys %ENV) {
  3236.     push(@p,$_) if /^HTTPS/;
  3237.     }
  3238.     return @p;
  3239. }
  3240. END_OF_FUNC
  3241.  
  3242. #### Method: protocol
  3243. # Return the protocol (http or https currently)
  3244. ####
  3245. 'protocol' => <<'END_OF_FUNC',
  3246. sub protocol {
  3247.     local($^W)=0;
  3248.     my $self = shift;
  3249.     return 'https' if uc($self->https()) eq 'ON'; 
  3250.     return 'https' if $self->server_port == 443;
  3251.     my $prot = $self->server_protocol;
  3252.     my($protocol,$version) = split('/',$prot);
  3253.     return "\L$protocol\E";
  3254. }
  3255. END_OF_FUNC
  3256.  
  3257. #### Method: remote_ident
  3258. # Return the identity of the remote user
  3259. # (but only if his host is running identd)
  3260. ####
  3261. 'remote_ident' => <<'END_OF_FUNC',
  3262. sub remote_ident {
  3263.     return $ENV{'REMOTE_IDENT'};
  3264. }
  3265. END_OF_FUNC
  3266.  
  3267.  
  3268. #### Method: auth_type
  3269. # Return the type of use verification/authorization in use, if any.
  3270. ####
  3271. 'auth_type' => <<'END_OF_FUNC',
  3272. sub auth_type {
  3273.     return $ENV{'AUTH_TYPE'};
  3274. }
  3275. END_OF_FUNC
  3276.  
  3277.  
  3278. #### Method: remote_user
  3279. # Return the authorization name used for user
  3280. # verification.
  3281. ####
  3282. 'remote_user' => <<'END_OF_FUNC',
  3283. sub remote_user {
  3284.     return $ENV{'REMOTE_USER'};
  3285. }
  3286. END_OF_FUNC
  3287.  
  3288.  
  3289. #### Method: user_name
  3290. # Try to return the remote user's name by hook or by
  3291. # crook
  3292. ####
  3293. 'user_name' => <<'END_OF_FUNC',
  3294. sub user_name {
  3295.     my ($self) = self_or_CGI(@_);
  3296.     return $self->http('from') || $ENV{'REMOTE_IDENT'} || $ENV{'REMOTE_USER'};
  3297. }
  3298. END_OF_FUNC
  3299.  
  3300. #### Method: nosticky
  3301. # Set or return the NOSTICKY global flag
  3302. ####
  3303. 'nosticky' => <<'END_OF_FUNC',
  3304. sub nosticky {
  3305.     my ($self,$param) = self_or_CGI(@_);
  3306.     $CGI::NOSTICKY = $param if defined($param);
  3307.     return $CGI::NOSTICKY;
  3308. }
  3309. END_OF_FUNC
  3310.  
  3311. #### Method: nph
  3312. # Set or return the NPH global flag
  3313. ####
  3314. 'nph' => <<'END_OF_FUNC',
  3315. sub nph {
  3316.     my ($self,$param) = self_or_CGI(@_);
  3317.     $CGI::NPH = $param if defined($param);
  3318.     return $CGI::NPH;
  3319. }
  3320. END_OF_FUNC
  3321.  
  3322. #### Method: private_tempfiles
  3323. # Set or return the private_tempfiles global flag
  3324. ####
  3325. 'private_tempfiles' => <<'END_OF_FUNC',
  3326. sub private_tempfiles {
  3327.     my ($self,$param) = self_or_CGI(@_);
  3328.     $CGI::PRIVATE_TEMPFILES = $param if defined($param);
  3329.     return $CGI::PRIVATE_TEMPFILES;
  3330. }
  3331. END_OF_FUNC
  3332. #### Method: close_upload_files
  3333. # Set or return the close_upload_files global flag
  3334. ####
  3335. 'close_upload_files' => <<'END_OF_FUNC',
  3336. sub close_upload_files {
  3337.     my ($self,$param) = self_or_CGI(@_);
  3338.     $CGI::CLOSE_UPLOAD_FILES = $param if defined($param);
  3339.     return $CGI::CLOSE_UPLOAD_FILES;
  3340. }
  3341. END_OF_FUNC
  3342.  
  3343.  
  3344. #### Method: default_dtd
  3345. # Set or return the default_dtd global
  3346. ####
  3347. 'default_dtd' => <<'END_OF_FUNC',
  3348. sub default_dtd {
  3349.     my ($self,$param,$param2) = self_or_CGI(@_);
  3350.     if (defined $param2 && defined $param) {
  3351.         $CGI::DEFAULT_DTD = [ $param, $param2 ];
  3352.     } elsif (defined $param) {
  3353.         $CGI::DEFAULT_DTD = $param;
  3354.     }
  3355.     return $CGI::DEFAULT_DTD;
  3356. }
  3357. END_OF_FUNC
  3358.  
  3359. # -------------- really private subroutines -----------------
  3360. 'previous_or_default' => <<'END_OF_FUNC',
  3361. sub previous_or_default {
  3362.     my($self,$name,$defaults,$override) = @_;
  3363.     my(%selected);
  3364.  
  3365.     if (!$override && ($self->{'.fieldnames'}->{$name} || 
  3366.                defined($self->param($name)) ) ) {
  3367.     $selected{$_}++ for $self->param($name);
  3368.     } elsif (defined($defaults) && ref($defaults) && 
  3369.          (ref($defaults) eq 'ARRAY')) {
  3370.     $selected{$_}++ for @{$defaults};
  3371.     } else {
  3372.     $selected{$defaults}++ if defined($defaults);
  3373.     }
  3374.  
  3375.     return %selected;
  3376. }
  3377. END_OF_FUNC
  3378.  
  3379. 'register_parameter' => <<'END_OF_FUNC',
  3380. sub register_parameter {
  3381.     my($self,$param) = @_;
  3382.     $self->{'.parametersToAdd'}->{$param}++;
  3383. }
  3384. END_OF_FUNC
  3385.  
  3386. 'get_fields' => <<'END_OF_FUNC',
  3387. sub get_fields {
  3388.     my($self) = @_;
  3389.     return $self->CGI::hidden('-name'=>'.cgifields',
  3390.                   '-values'=>[keys %{$self->{'.parametersToAdd'}}],
  3391.                   '-override'=>1);
  3392. }
  3393. END_OF_FUNC
  3394.  
  3395. 'read_from_cmdline' => <<'END_OF_FUNC',
  3396. sub read_from_cmdline {
  3397.     my($input,@words);
  3398.     my($query_string);
  3399.     my($subpath);
  3400.     if ($DEBUG && @ARGV) {
  3401.     @words = @ARGV;
  3402.     } elsif ($DEBUG > 1) {
  3403.     require "shellwords.pl";
  3404.     print STDERR "(offline mode: enter name=value pairs on standard input; press ^D or ^Z when done)\n";
  3405.     chomp(@lines = <STDIN>); # remove newlines
  3406.     $input = join(" ",@lines);
  3407.     @words = &shellwords($input);    
  3408.     }
  3409.     for (@words) {
  3410.     s/\\=/%3D/g;
  3411.     s/\\&/%26/g;        
  3412.     }
  3413.  
  3414.     if ("@words"=~/=/) {
  3415.     $query_string = join('&',@words);
  3416.     } else {
  3417.     $query_string = join('+',@words);
  3418.     }
  3419.     if ($query_string =~ /^(.*?)\?(.*)$/)
  3420.     {
  3421.         $query_string = $2;
  3422.         $subpath = $1;
  3423.     }
  3424.     return { 'query_string' => $query_string, 'subpath' => $subpath };
  3425. }
  3426. END_OF_FUNC
  3427.  
  3428. #####
  3429. # subroutine: read_multipart
  3430. #
  3431. # Read multipart data and store it into our parameters.
  3432. # An interesting feature is that if any of the parts is a file, we
  3433. # create a temporary file and open up a filehandle on it so that the
  3434. # caller can read from it if necessary.
  3435. #####
  3436. 'read_multipart' => <<'END_OF_FUNC',
  3437. sub read_multipart {
  3438.     my($self,$boundary,$length) = @_;
  3439.     my($buffer) = $self->new_MultipartBuffer($boundary,$length);
  3440.     return unless $buffer;
  3441.     my(%header,$body);
  3442.     my $filenumber = 0;
  3443.     while (!$buffer->eof) {
  3444.     %header = $buffer->readHeader;
  3445.  
  3446.     unless (%header) {
  3447.         $self->cgi_error("400 Bad request (malformed multipart POST)");
  3448.         return;
  3449.     }
  3450.  
  3451.     $header{'Content-Disposition'} ||= ''; # quench uninit variable warning
  3452.  
  3453.     my($param)= $header{'Content-Disposition'}=~/ name="([^"]*)"/;
  3454.         $param .= $TAINTED;
  3455.  
  3456.         # See RFC 1867, 2183, 2045
  3457.         # NB: File content will be loaded into memory should
  3458.         # content-disposition parsing fail.
  3459.         my ($filename) = $header{'Content-Disposition'}
  3460.                    =~/ filename=(("[^"]*")|([a-z\d!\#'\*\+,\.^_\`\{\}\|\~]*))/i;
  3461.  
  3462.     $filename ||= ''; # quench uninit variable warning
  3463.  
  3464.         $filename =~ s/^"([^"]*)"$/$1/;
  3465.     # Test for Opera's multiple upload feature
  3466.     my($multipart) = ( defined( $header{'Content-Type'} ) &&
  3467.         $header{'Content-Type'} =~ /multipart\/mixed/ ) ?
  3468.         1 : 0;
  3469.  
  3470.     # add this parameter to our list
  3471.     $self->add_parameter($param);
  3472.  
  3473.     # If no filename specified, then just read the data and assign it
  3474.     # to our parameter list.
  3475.     if ( ( !defined($filename) || $filename eq '' ) && !$multipart ) {
  3476.         my($value) = $buffer->readBody;
  3477.             $value .= $TAINTED;
  3478.         push(@{$self->{param}{$param}},$value);
  3479.         next;
  3480.     }
  3481.  
  3482.     my ($tmpfile,$tmp,$filehandle);
  3483.       UPLOADS: {
  3484.       # If we get here, then we are dealing with a potentially large
  3485.       # uploaded form.  Save the data to a temporary file, then open
  3486.       # the file for reading.
  3487.  
  3488.       # skip the file if uploads disabled
  3489.       if ($DISABLE_UPLOADS) {
  3490.           while (defined($data = $buffer->read)) { }
  3491.           last UPLOADS;
  3492.       }
  3493.  
  3494.       # set the filename to some recognizable value
  3495.           if ( ( !defined($filename) || $filename eq '' ) && $multipart ) {
  3496.               $filename = "multipart/mixed";
  3497.           }
  3498.  
  3499.       # choose a relatively unpredictable tmpfile sequence number
  3500.           my $seqno = unpack("%16C*",join('',localtime,grep {defined $_} values %ENV));
  3501.           for (my $cnt=10;$cnt>0;$cnt--) {
  3502.         next unless $tmpfile = new CGITempFile($seqno);
  3503.         $tmp = $tmpfile->as_string;
  3504.         last if defined($filehandle = Fh->new($filename,$tmp,$PRIVATE_TEMPFILES));
  3505.             $seqno += int rand(100);
  3506.           }
  3507.           die "CGI open of tmpfile: $!\n" unless defined $filehandle;
  3508.       $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode 
  3509.                      && defined fileno($filehandle);
  3510.  
  3511.       # if this is an multipart/mixed attachment, save the header
  3512.       # together with the body for later parsing with an external
  3513.       # MIME parser module
  3514.       if ( $multipart ) {
  3515.           for ( keys %header ) {
  3516.           print $filehandle "$_: $header{$_}${CRLF}";
  3517.           }
  3518.           print $filehandle "${CRLF}";
  3519.       }
  3520.  
  3521.       my ($data);
  3522.       local($\) = '';
  3523.           my $totalbytes = 0;
  3524.           while (defined($data = $buffer->read)) {
  3525.               if (defined $self->{'.upload_hook'})
  3526.                {
  3527.                   $totalbytes += length($data);
  3528.                    &{$self->{'.upload_hook'}}($filename ,$data, $totalbytes, $self->{'.upload_data'});
  3529.               }
  3530.               print $filehandle $data if ($self->{'use_tempfile'});
  3531.           }
  3532.  
  3533.       # back up to beginning of file
  3534.       seek($filehandle,0,0);
  3535.  
  3536.       ## Close the filehandle if requested this allows a multipart MIME
  3537.       ## upload to contain many files, and we won't die due to too many
  3538.       ## open file handles. The user can access the files using the hash
  3539.       ## below.
  3540.       close $filehandle if $CLOSE_UPLOAD_FILES;
  3541.       $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
  3542.  
  3543.       # Save some information about the uploaded file where we can get
  3544.       # at it later.
  3545.       # Use the typeglob as the key, as this is guaranteed to be
  3546.       # unique for each filehandle.  Don't use the file descriptor as
  3547.       # this will be re-used for each filehandle if the
  3548.       # close_upload_files feature is used.
  3549.       $self->{'.tmpfiles'}->{$$filehandle}= {
  3550.               hndl => $filehandle,
  3551.           name => $tmpfile,
  3552.           info => {%header},
  3553.       };
  3554.       push(@{$self->{param}{$param}},$filehandle);
  3555.       }
  3556.     }
  3557. }
  3558. END_OF_FUNC
  3559.  
  3560. #####
  3561. # subroutine: read_multipart_related
  3562. #
  3563. # Read multipart/related data and store it into our parameters.  The
  3564. # first parameter sets the start of the data. The part identified by
  3565. # this Content-ID will not be stored as a file upload, but will be
  3566. # returned by this method.  All other parts will be available as file
  3567. # uploads accessible by their Content-ID
  3568. #####
  3569. 'read_multipart_related' => <<'END_OF_FUNC',
  3570. sub read_multipart_related {
  3571.     my($self,$start,$boundary,$length) = @_;
  3572.     my($buffer) = $self->new_MultipartBuffer($boundary,$length);
  3573.     return unless $buffer;
  3574.     my(%header,$body);
  3575.     my $filenumber = 0;
  3576.     my $returnvalue;
  3577.     while (!$buffer->eof) {
  3578.     %header = $buffer->readHeader;
  3579.  
  3580.     unless (%header) {
  3581.         $self->cgi_error("400 Bad request (malformed multipart POST)");
  3582.         return;
  3583.     }
  3584.  
  3585.     my($param) = $header{'Content-ID'}=~/\<([^\>]*)\>/;
  3586.         $param .= $TAINTED;
  3587.  
  3588.     # If this is the start part, then just read the data and assign it
  3589.     # to our return variable.
  3590.     if ( $param eq $start ) {
  3591.         $returnvalue = $buffer->readBody;
  3592.             $returnvalue .= $TAINTED;
  3593.         next;
  3594.     }
  3595.  
  3596.     # add this parameter to our list
  3597.     $self->add_parameter($param);
  3598.  
  3599.     my ($tmpfile,$tmp,$filehandle);
  3600.       UPLOADS: {
  3601.       # If we get here, then we are dealing with a potentially large
  3602.       # uploaded form.  Save the data to a temporary file, then open
  3603.       # the file for reading.
  3604.  
  3605.       # skip the file if uploads disabled
  3606.       if ($DISABLE_UPLOADS) {
  3607.           while (defined($data = $buffer->read)) { }
  3608.           last UPLOADS;
  3609.       }
  3610.  
  3611.       # choose a relatively unpredictable tmpfile sequence number
  3612.           my $seqno = unpack("%16C*",join('',localtime,grep {defined $_} values %ENV));
  3613.           for (my $cnt=10;$cnt>0;$cnt--) {
  3614.         next unless $tmpfile = new CGITempFile($seqno);
  3615.         $tmp = $tmpfile->as_string;
  3616.         last if defined($filehandle = Fh->new($param,$tmp,$PRIVATE_TEMPFILES));
  3617.             $seqno += int rand(100);
  3618.           }
  3619.           die "CGI open of tmpfile: $!\n" unless defined $filehandle;
  3620.       $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode 
  3621.                      && defined fileno($filehandle);
  3622.  
  3623.       my ($data);
  3624.       local($\) = '';
  3625.           my $totalbytes;
  3626.           while (defined($data = $buffer->read)) {
  3627.               if (defined $self->{'.upload_hook'})
  3628.                {
  3629.                   $totalbytes += length($data);
  3630.                    &{$self->{'.upload_hook'}}($param ,$data, $totalbytes, $self->{'.upload_data'});
  3631.               }
  3632.               print $filehandle $data if ($self->{'use_tempfile'});
  3633.           }
  3634.  
  3635.       # back up to beginning of file
  3636.       seek($filehandle,0,0);
  3637.  
  3638.       ## Close the filehandle if requested this allows a multipart MIME
  3639.       ## upload to contain many files, and we won't die due to too many
  3640.       ## open file handles. The user can access the files using the hash
  3641.       ## below.
  3642.       close $filehandle if $CLOSE_UPLOAD_FILES;
  3643.       $CGI::DefaultClass->binmode($filehandle) if $CGI::needs_binmode;
  3644.  
  3645.       # Save some information about the uploaded file where we can get
  3646.       # at it later.
  3647.       # Use the typeglob as the key, as this is guaranteed to be
  3648.       # unique for each filehandle.  Don't use the file descriptor as
  3649.       # this will be re-used for each filehandle if the
  3650.       # close_upload_files feature is used.
  3651.       $self->{'.tmpfiles'}->{$$filehandle}= {
  3652.               hndl => $filehandle,
  3653.           name => $tmpfile,
  3654.           info => {%header},
  3655.       };
  3656.       push(@{$self->{param}{$param}},$filehandle);
  3657.       }
  3658.     }
  3659.     return $returnvalue;
  3660. }
  3661. END_OF_FUNC
  3662.  
  3663.  
  3664. 'upload' =><<'END_OF_FUNC',
  3665. sub upload {
  3666.     my($self,$param_name) = self_or_default(@_);
  3667.     my @param = grep {ref($_) && defined(fileno($_))} $self->param($param_name);
  3668.     return unless @param;
  3669.     return wantarray ? @param : $param[0];
  3670. }
  3671. END_OF_FUNC
  3672.  
  3673. 'tmpFileName' => <<'END_OF_FUNC',
  3674. sub tmpFileName {
  3675.     my($self,$filename) = self_or_default(@_);
  3676.     return $self->{'.tmpfiles'}->{$$filename}->{name} ?
  3677.     $self->{'.tmpfiles'}->{$$filename}->{name}->as_string
  3678.         : '';
  3679. }
  3680. END_OF_FUNC
  3681.  
  3682. 'uploadInfo' => <<'END_OF_FUNC',
  3683. sub uploadInfo {
  3684.     my($self,$filename) = self_or_default(@_);
  3685.     return $self->{'.tmpfiles'}->{$$filename}->{info};
  3686. }
  3687. END_OF_FUNC
  3688.  
  3689. # internal routine, don't use
  3690. '_set_values_and_labels' => <<'END_OF_FUNC',
  3691. sub _set_values_and_labels {
  3692.     my $self = shift;
  3693.     my ($v,$l,$n) = @_;
  3694.     $$l = $v if ref($v) eq 'HASH' && !ref($$l);
  3695.     return $self->param($n) if !defined($v);
  3696.     return $v if !ref($v);
  3697.     return ref($v) eq 'HASH' ? keys %$v : @$v;
  3698. }
  3699. END_OF_FUNC
  3700.  
  3701. # internal routine, don't use
  3702. '_set_attributes' => <<'END_OF_FUNC',
  3703. sub _set_attributes {
  3704.     my $self = shift;
  3705.     my($element, $attributes) = @_;
  3706.     return '' unless defined($attributes->{$element});
  3707.     $attribs = ' ';
  3708.     for my $attrib (keys %{$attributes->{$element}}) {
  3709.         (my $clean_attrib = $attrib) =~ s/^-//;
  3710.         $attribs .= "@{[lc($clean_attrib)]}=\"$attributes->{$element}{$attrib}\" ";
  3711.     }
  3712.     $attribs =~ s/ $//;
  3713.     return $attribs;
  3714. }
  3715. END_OF_FUNC
  3716.  
  3717. '_compile_all' => <<'END_OF_FUNC',
  3718. sub _compile_all {
  3719.     for (@_) {
  3720.     next if defined(&$_);
  3721.     $AUTOLOAD = "CGI::$_";
  3722.     _compile();
  3723.     }
  3724. }
  3725. END_OF_FUNC
  3726.  
  3727. );
  3728. END_OF_AUTOLOAD
  3729. ;
  3730.  
  3731. #########################################################
  3732. # Globals and stubs for other packages that we use.
  3733. #########################################################
  3734.  
  3735. ################### Fh -- lightweight filehandle ###############
  3736. package Fh;
  3737.  
  3738. use overload 
  3739.     '""'  => \&asString,
  3740.     'cmp' => \&compare,
  3741.     'fallback'=>1;
  3742.  
  3743. $FH='fh00000';
  3744.  
  3745. *Fh::AUTOLOAD = \&CGI::AUTOLOAD;
  3746.  
  3747. sub DESTROY {
  3748.     my $self = shift;
  3749.     close $self;
  3750. }
  3751.  
  3752. $AUTOLOADED_ROUTINES = '';      # prevent -w error
  3753. $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
  3754. %SUBS =  (
  3755. 'asString' => <<'END_OF_FUNC',
  3756. sub asString {
  3757.     my $self = shift;
  3758.     # get rid of package name
  3759.     (my $i = $$self) =~ s/^\*(\w+::fh\d{5})+//; 
  3760.     $i =~ s/%(..)/ chr(hex($1)) /eg;
  3761.     return $i.$CGI::TAINTED;
  3762. # BEGIN DEAD CODE
  3763. # This was an extremely clever patch that allowed "use strict refs".
  3764. # Unfortunately it relied on another bug that caused leaky file descriptors.
  3765. # The underlying bug has been fixed, so this no longer works.  However
  3766. # "strict refs" still works for some reason.
  3767. #    my $self = shift;
  3768. #    return ${*{$self}{SCALAR}};
  3769. # END DEAD CODE
  3770. }
  3771. END_OF_FUNC
  3772.  
  3773. 'compare' => <<'END_OF_FUNC',
  3774. sub compare {
  3775.     my $self = shift;
  3776.     my $value = shift;
  3777.     return "$self" cmp $value;
  3778. }
  3779. END_OF_FUNC
  3780.  
  3781. 'new'  => <<'END_OF_FUNC',
  3782. sub new {
  3783.     my($pack,$name,$file,$delete) = @_;
  3784.     _setup_symbols(@SAVED_SYMBOLS) if @SAVED_SYMBOLS;
  3785.     require Fcntl unless defined &Fcntl::O_RDWR;
  3786.     (my $safename = $name) =~ s/([':%])/ sprintf '%%%02X', ord $1 /eg;
  3787.     my $fv = ++$FH . $safename;
  3788.     my $ref = \*{"Fh::$fv"};
  3789.     $file =~ m!^([a-zA-Z0-9_\+ \'\":/.\$\\~-]+)$! || return;
  3790.     my $safe = $1;
  3791.     sysopen($ref,$safe,Fcntl::O_RDWR()|Fcntl::O_CREAT()|Fcntl::O_EXCL(),0600) || return;
  3792.     unlink($safe) if $delete;
  3793.     CORE::delete $Fh::{$fv};
  3794.     return bless $ref,$pack;
  3795. }
  3796. END_OF_FUNC
  3797.  
  3798. 'handle' => <<'END_OF_FUNC',
  3799. sub handle {
  3800.   my $self = shift;
  3801.   eval "require IO::Handle" unless IO::Handle->can('new_from_fd');
  3802.   return IO::Handle->new_from_fd(fileno $self,"<");
  3803. }
  3804. END_OF_FUNC
  3805.  
  3806. );
  3807. END_OF_AUTOLOAD
  3808.  
  3809. ######################## MultipartBuffer ####################
  3810. package MultipartBuffer;
  3811.  
  3812. use constant DEBUG => 0;
  3813.  
  3814. # how many bytes to read at a time.  We use
  3815. # a 4K buffer by default.
  3816. $INITIAL_FILLUNIT = 1024 * 4;
  3817. $TIMEOUT = 240*60;       # 4 hour timeout for big files
  3818. $SPIN_LOOP_MAX = 2000;  # bug fix for some Netscape servers
  3819. $CRLF=$CGI::CRLF;
  3820.  
  3821. #reuse the autoload function
  3822. *MultipartBuffer::AUTOLOAD = \&CGI::AUTOLOAD;
  3823.  
  3824. # avoid autoloader warnings
  3825. sub DESTROY {}
  3826.  
  3827. ###############################################################################
  3828. ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
  3829. ###############################################################################
  3830. $AUTOLOADED_ROUTINES = '';      # prevent -w error
  3831. $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
  3832. %SUBS =  (
  3833.  
  3834. 'new' => <<'END_OF_FUNC',
  3835. sub new {
  3836.     my($package,$interface,$boundary,$length) = @_;
  3837.     $FILLUNIT = $INITIAL_FILLUNIT;
  3838.     $CGI::DefaultClass->binmode($IN); # if $CGI::needs_binmode;  # just do it always
  3839.  
  3840.     # If the user types garbage into the file upload field,
  3841.     # then Netscape passes NOTHING to the server (not good).
  3842.     # We may hang on this read in that case. So we implement
  3843.     # a read timeout.  If nothing is ready to read
  3844.     # by then, we return.
  3845.  
  3846.     # Netscape seems to be a little bit unreliable
  3847.     # about providing boundary strings.
  3848.     my $boundary_read = 0;
  3849.     if ($boundary) {
  3850.  
  3851.     # Under the MIME spec, the boundary consists of the 
  3852.     # characters "--" PLUS the Boundary string
  3853.  
  3854.     # BUG: IE 3.01 on the Macintosh uses just the boundary -- not
  3855.     # the two extra hyphens.  We do a special case here on the user-agent!!!!
  3856.     $boundary = "--$boundary" unless CGI::user_agent('MSIE\s+3\.0[12];\s*Mac|DreamPassport');
  3857.  
  3858.     } else { # otherwise we find it ourselves
  3859.     my($old);
  3860.     ($old,$/) = ($/,$CRLF); # read a CRLF-delimited line
  3861.     $boundary = <STDIN>;      # BUG: This won't work correctly under mod_perl
  3862.     $length -= length($boundary);
  3863.     chomp($boundary);               # remove the CRLF
  3864.     $/ = $old;                      # restore old line separator
  3865.         $boundary_read++;
  3866.     }
  3867.  
  3868.     my $self = {LENGTH=>$length,
  3869.         CHUNKED=>!$length,
  3870.         BOUNDARY=>$boundary,
  3871.         INTERFACE=>$interface,
  3872.         BUFFER=>'',
  3873.         };
  3874.  
  3875.     $FILLUNIT = length($boundary)
  3876.     if length($boundary) > $FILLUNIT;
  3877.  
  3878.     my $retval = bless $self,ref $package || $package;
  3879.  
  3880.     # Read the preamble and the topmost (boundary) line plus the CRLF.
  3881.     unless ($boundary_read) {
  3882.       while ($self->read(0)) { }
  3883.     }
  3884.     die "Malformed multipart POST: data truncated\n" if $self->eof;
  3885.  
  3886.     return $retval;
  3887. }
  3888. END_OF_FUNC
  3889.  
  3890. 'readHeader' => <<'END_OF_FUNC',
  3891. sub readHeader {
  3892.     my($self) = @_;
  3893.     my($end);
  3894.     my($ok) = 0;
  3895.     my($bad) = 0;
  3896.  
  3897.     local($CRLF) = "\015\012" if $CGI::OS eq 'VMS' || $CGI::EBCDIC;
  3898.  
  3899.     do {
  3900.     $self->fillBuffer($FILLUNIT);
  3901.     $ok++ if ($end = index($self->{BUFFER},"${CRLF}${CRLF}")) >= 0;
  3902.     $ok++ if $self->{BUFFER} eq '';
  3903.     $bad++ if !$ok && $self->{LENGTH} <= 0;
  3904.     # this was a bad idea
  3905.     # $FILLUNIT *= 2 if length($self->{BUFFER}) >= $FILLUNIT; 
  3906.     } until $ok || $bad;
  3907.     return () if $bad;
  3908.  
  3909.     #EBCDIC NOTE: translate header into EBCDIC, but watch out for continuation lines!
  3910.  
  3911.     my($header) = substr($self->{BUFFER},0,$end+2);
  3912.     substr($self->{BUFFER},0,$end+4) = '';
  3913.     my %return;
  3914.  
  3915.     if ($CGI::EBCDIC) {
  3916.       warn "untranslated header=$header\n" if DEBUG;
  3917.       $header = CGI::Util::ascii2ebcdic($header);
  3918.       warn "translated header=$header\n" if DEBUG;
  3919.     }
  3920.  
  3921.     # See RFC 2045 Appendix A and RFC 822 sections 3.4.8
  3922.     #   (Folding Long Header Fields), 3.4.3 (Comments)
  3923.     #   and 3.4.5 (Quoted-Strings).
  3924.  
  3925.     my $token = '[-\w!\#$%&\'*+.^_\`|{}~]';
  3926.     $header=~s/$CRLF\s+/ /og;        # merge continuation lines
  3927.  
  3928.     while ($header=~/($token+):\s+([^$CRLF]*)/mgox) {
  3929.         my ($field_name,$field_value) = ($1,$2);
  3930.     $field_name =~ s/\b(\w)/uc($1)/eg; #canonicalize
  3931.     $return{$field_name}=$field_value;
  3932.     }
  3933.     return %return;
  3934. }
  3935. END_OF_FUNC
  3936.  
  3937. # This reads and returns the body as a single scalar value.
  3938. 'readBody' => <<'END_OF_FUNC',
  3939. sub readBody {
  3940.     my($self) = @_;
  3941.     my($data);
  3942.     my($returnval)='';
  3943.  
  3944.     #EBCDIC NOTE: want to translate returnval into EBCDIC HERE
  3945.  
  3946.     while (defined($data = $self->read)) {
  3947.     $returnval .= $data;
  3948.     }
  3949.  
  3950.     if ($CGI::EBCDIC) {
  3951.       warn "untranslated body=$returnval\n" if DEBUG;
  3952.       $returnval = CGI::Util::ascii2ebcdic($returnval);
  3953.       warn "translated body=$returnval\n"   if DEBUG;
  3954.     }
  3955.     return $returnval;
  3956. }
  3957. END_OF_FUNC
  3958.  
  3959. # This will read $bytes or until the boundary is hit, whichever happens
  3960. # first.  After the boundary is hit, we return undef.  The next read will
  3961. # skip over the boundary and begin reading again;
  3962. 'read' => <<'END_OF_FUNC',
  3963. sub read {
  3964.     my($self,$bytes) = @_;
  3965.  
  3966.     # default number of bytes to read
  3967.     $bytes = $bytes || $FILLUNIT;
  3968.  
  3969.     # Fill up our internal buffer in such a way that the boundary
  3970.     # is never split between reads.
  3971.     $self->fillBuffer($bytes);
  3972.  
  3973.     my $boundary_start = $CGI::EBCDIC ? CGI::Util::ebcdic2ascii($self->{BOUNDARY})      : $self->{BOUNDARY};
  3974.     my $boundary_end   = $CGI::EBCDIC ? CGI::Util::ebcdic2ascii($self->{BOUNDARY}.'--') : $self->{BOUNDARY}.'--';
  3975.  
  3976.     # Find the boundary in the buffer (it may not be there).
  3977.     my $start = index($self->{BUFFER},$boundary_start);
  3978.  
  3979.     warn "boundary=$self->{BOUNDARY} length=$self->{LENGTH} start=$start\n" if DEBUG;
  3980.  
  3981.     # protect against malformed multipart POST operations
  3982.     die "Malformed multipart POST\n" unless $self->{CHUNKED} || ($start >= 0 || $self->{LENGTH} > 0);
  3983.  
  3984.     #EBCDIC NOTE: want to translate boundary search into ASCII here.
  3985.  
  3986.     # If the boundary begins the data, then skip past it
  3987.     # and return undef.
  3988.     if ($start == 0) {
  3989.  
  3990.     # clear us out completely if we've hit the last boundary.
  3991.     if (index($self->{BUFFER},$boundary_end)==0) {
  3992.         $self->{BUFFER}='';
  3993.         $self->{LENGTH}=0;
  3994.         return undef;
  3995.     }
  3996.  
  3997.     # just remove the boundary.
  3998.     substr($self->{BUFFER},0,length($boundary_start))='';
  3999.         $self->{BUFFER} =~ s/^\012\015?//;
  4000.     return undef;
  4001.     }
  4002.  
  4003.     my $bytesToReturn;
  4004.     if ($start > 0) {           # read up to the boundary
  4005.         $bytesToReturn = $start-2 > $bytes ? $bytes : $start;
  4006.     } else {    # read the requested number of bytes
  4007.     # leave enough bytes in the buffer to allow us to read
  4008.     # the boundary.  Thanks to Kevin Hendrick for finding
  4009.     # this one.
  4010.     $bytesToReturn = $bytes - (length($boundary_start)+1);
  4011.     }
  4012.  
  4013.     my $returnval=substr($self->{BUFFER},0,$bytesToReturn);
  4014.     substr($self->{BUFFER},0,$bytesToReturn)='';
  4015.     
  4016.     # If we hit the boundary, remove the CRLF from the end.
  4017.     return ($bytesToReturn==$start)
  4018.            ? substr($returnval,0,-2) : $returnval;
  4019. }
  4020. END_OF_FUNC
  4021.  
  4022.  
  4023. # This fills up our internal buffer in such a way that the
  4024. # boundary is never split between reads
  4025. 'fillBuffer' => <<'END_OF_FUNC',
  4026. sub fillBuffer {
  4027.     my($self,$bytes) = @_;
  4028.     return unless $self->{CHUNKED} || $self->{LENGTH};
  4029.  
  4030.     my($boundaryLength) = length($self->{BOUNDARY});
  4031.     my($bufferLength) = length($self->{BUFFER});
  4032.     my($bytesToRead) = $bytes - $bufferLength + $boundaryLength + 2;
  4033.     $bytesToRead = $self->{LENGTH} if !$self->{CHUNKED} && $self->{LENGTH} < $bytesToRead;
  4034.  
  4035.     # Try to read some data.  We may hang here if the browser is screwed up.
  4036.     my $bytesRead = $self->{INTERFACE}->read_from_client(\$self->{BUFFER},
  4037.                              $bytesToRead,
  4038.                              $bufferLength);
  4039.     warn "bytesToRead=$bytesToRead, bufferLength=$bufferLength, buffer=$self->{BUFFER}\n" if DEBUG;
  4040.     $self->{BUFFER} = '' unless defined $self->{BUFFER};
  4041.  
  4042.     # An apparent bug in the Apache server causes the read()
  4043.     # to return zero bytes repeatedly without blocking if the
  4044.     # remote user aborts during a file transfer.  I don't know how
  4045.     # they manage this, but the workaround is to abort if we get
  4046.     # more than SPIN_LOOP_MAX consecutive zero reads.
  4047.     if ($bytesRead <= 0) {
  4048.     die  "CGI.pm: Server closed socket during multipart read (client aborted?).\n"
  4049.         if ($self->{ZERO_LOOP_COUNTER}++ >= $SPIN_LOOP_MAX);
  4050.     } else {
  4051.     $self->{ZERO_LOOP_COUNTER}=0;
  4052.     }
  4053.  
  4054.     $self->{LENGTH} -= $bytesRead if !$self->{CHUNKED} && $bytesRead;
  4055. }
  4056. END_OF_FUNC
  4057.  
  4058.  
  4059. # Return true when we've finished reading
  4060. 'eof' => <<'END_OF_FUNC'
  4061. sub eof {
  4062.     my($self) = @_;
  4063.     return 1 if (length($self->{BUFFER}) == 0)
  4064.          && ($self->{LENGTH} <= 0);
  4065.     undef;
  4066. }
  4067. END_OF_FUNC
  4068.  
  4069. );
  4070. END_OF_AUTOLOAD
  4071.  
  4072. ####################################################################################
  4073. ################################## TEMPORARY FILES #################################
  4074. ####################################################################################
  4075. package CGITempFile;
  4076.  
  4077. sub find_tempdir {
  4078.   $SL = $CGI::SL;
  4079.   $MAC = $CGI::OS eq 'MACINTOSH';
  4080.   my ($vol) = $MAC ? MacPerl::Volumes() =~ /:(.*)/ : "";
  4081.   unless (defined $TMPDIRECTORY) {
  4082.     @TEMP=("${SL}usr${SL}tmp","${SL}var${SL}tmp",
  4083.        "C:${SL}temp","${SL}tmp","${SL}temp",
  4084.        "${vol}${SL}Temporary Items",
  4085.            "${SL}WWW_ROOT", "${SL}SYS\$SCRATCH",
  4086.        "C:${SL}system${SL}temp");
  4087.     
  4088.     if( $CGI::OS eq 'WINDOWS' ){
  4089.        unshift @TEMP,
  4090.            $ENV{TEMP},
  4091.            $ENV{TMP},
  4092.            $ENV{WINDIR} . $SL . 'TEMP';
  4093.     }
  4094.  
  4095.     unshift(@TEMP,$ENV{'TMPDIR'}) if defined $ENV{'TMPDIR'};
  4096.  
  4097.     # this feature was supposed to provide per-user tmpfiles, but
  4098.     # it is problematic.
  4099.     #    unshift(@TEMP,(getpwuid($<))[7].'/tmp') if $CGI::OS eq 'UNIX';
  4100.     # Rob: getpwuid() is unfortunately UNIX specific. On brain dead OS'es this
  4101.     #    : can generate a 'getpwuid() not implemented' exception, even though
  4102.     #    : it's never called.  Found under DOS/Win with the DJGPP perl port.
  4103.     #    : Refer to getpwuid() only at run-time if we're fortunate and have  UNIX.
  4104.     # unshift(@TEMP,(eval {(getpwuid($>))[7]}).'/tmp') if $CGI::OS eq 'UNIX' and $> != 0;
  4105.  
  4106.     for (@TEMP) {
  4107.       do {$TMPDIRECTORY = $_; last} if -d $_ && -w _;
  4108.     }
  4109.   }
  4110.   $TMPDIRECTORY  = $MAC ? "" : "." unless $TMPDIRECTORY;
  4111. }
  4112.  
  4113. find_tempdir();
  4114.  
  4115. $MAXTRIES = 5000;
  4116.  
  4117. # cute feature, but overload implementation broke it
  4118. # %OVERLOAD = ('""'=>'as_string');
  4119. *CGITempFile::AUTOLOAD = \&CGI::AUTOLOAD;
  4120.  
  4121. sub DESTROY {
  4122.     my($self) = @_;
  4123.     $$self =~ m!^([a-zA-Z0-9_ \'\":/.\$\\~-]+)$! || return;
  4124.     my $safe = $1;             # untaint operation
  4125.     unlink $safe;              # get rid of the file
  4126. }
  4127.  
  4128. ###############################################################################
  4129. ################# THESE FUNCTIONS ARE AUTOLOADED ON DEMAND ####################
  4130. ###############################################################################
  4131. $AUTOLOADED_ROUTINES = '';      # prevent -w error
  4132. $AUTOLOADED_ROUTINES=<<'END_OF_AUTOLOAD';
  4133. %SUBS = (
  4134.  
  4135. 'new' => <<'END_OF_FUNC',
  4136. sub new {
  4137.     my($package,$sequence) = @_;
  4138.     my $filename;
  4139.     find_tempdir() unless -w $TMPDIRECTORY;
  4140.     for (my $i = 0; $i < $MAXTRIES; $i++) {
  4141.     last if ! -f ($filename = sprintf("\%s${SL}CGItemp%d", $TMPDIRECTORY, $sequence++));
  4142.     }
  4143.     # check that it is a more-or-less valid filename
  4144.     return unless $filename =~ m!^([a-zA-Z0-9_\+ \'\":/.\$\\~-]+)$!;
  4145.     # this used to untaint, now it doesn't
  4146.     # $filename = $1;
  4147.     return bless \$filename;
  4148. }
  4149. END_OF_FUNC
  4150.  
  4151. 'as_string' => <<'END_OF_FUNC'
  4152. sub as_string {
  4153.     my($self) = @_;
  4154.     return $$self;
  4155. }
  4156. END_OF_FUNC
  4157.  
  4158. );
  4159. END_OF_AUTOLOAD
  4160.  
  4161. package CGI;
  4162.  
  4163. # We get a whole bunch of warnings about "possibly uninitialized variables"
  4164. # when running with the -w switch.  Touch them all once to get rid of the
  4165. # warnings.  This is ugly and I hate it.
  4166. if ($^W) {
  4167.     $CGI::CGI = '';
  4168.     $CGI::CGI=<<EOF;
  4169.     $CGI::VERSION;
  4170.     $MultipartBuffer::SPIN_LOOP_MAX;
  4171.     $MultipartBuffer::CRLF;
  4172.     $MultipartBuffer::TIMEOUT;
  4173.     $MultipartBuffer::INITIAL_FILLUNIT;
  4174. EOF
  4175.     ;
  4176. }
  4177.  
  4178. 1;
  4179.  
  4180. __END__
  4181.  
  4182. =head1 NAME
  4183.  
  4184. CGI - Handle Common Gateway Interface requests and responses
  4185.  
  4186. =head1 SYNOPSIS
  4187.  
  4188.     use CGI;
  4189.  
  4190.     my $q = CGI->new;
  4191.  
  4192.     # Process an HTTP request
  4193.      @values  = $q->param('form_field');
  4194.  
  4195.      $fh      = $q->upload('file_field');
  4196.  
  4197.      $riddle  = $query->cookie('riddle_name');
  4198.      %answers = $query->cookie('answers');
  4199.  
  4200.     # Prepare various HTTP responses
  4201.     print $q->header();
  4202.     print $q->header('application/json');
  4203.  
  4204.     $cookie1 = $q->cookie(-name=>'riddle_name', -value=>"The Sphynx's Question");
  4205.     $cookie2 = $q->cookie(-name=>'answers', -value=>\%answers);
  4206.     print $q->header(
  4207.         -type    => 'image/gif',
  4208.         -expires => '+3d',
  4209.         -cookie  => [$cookie1,$cookie2]
  4210.         );
  4211.  
  4212.    print  $q->redirect('http://somewhere.else/in/movie/land');
  4213.  
  4214. =head1 DESCRIPTION
  4215.  
  4216. CGI.pm is a stable, complete and mature solution for processing and preparing
  4217. HTTP requests and responses.  Major features including processing form
  4218. submissions, file uploads, reading and writing cookies, query string generation
  4219. and manipulation, and processing and preparing HTTP headers. Some HTML
  4220. generation utilities are included as well.
  4221.  
  4222. CGI.pm performs very well in in a vanilla CGI.pm environment and also comes
  4223. with built-in support for mod_perl and mod_perl2 as well as FastCGI.
  4224.  
  4225. It has the benefit of having developed and refined over 10 years with input
  4226. from dozens of contributors and being deployed on thousands of websites.
  4227. CGI.pm has been included in the Perl distribution since Perl 5.4, and has
  4228. become a de-facto standard.
  4229.  
  4230. =head2 PROGRAMMING STYLE
  4231.  
  4232. There are two styles of programming with CGI.pm, an object-oriented
  4233. style and a function-oriented style.  In the object-oriented style you
  4234. create one or more CGI objects and then use object methods to create
  4235. the various elements of the page.  Each CGI object starts out with the
  4236. list of named parameters that were passed to your CGI script by the
  4237. server.  You can modify the objects, save them to a file or database
  4238. and recreate them.  Because each object corresponds to the "state" of
  4239. the CGI script, and because each object's parameter list is
  4240. independent of the others, this allows you to save the state of the
  4241. script and restore it later.
  4242.  
  4243. For example, using the object oriented style, here is how you create
  4244. a simple "Hello World" HTML page:
  4245.  
  4246.    #!/usr/local/bin/perl -w
  4247.    use CGI;                             # load CGI routines
  4248.    $q = new CGI;                        # create new CGI object
  4249.    print $q->header,                    # create the HTTP header
  4250.          $q->start_html('hello world'), # start the HTML
  4251.          $q->h1('hello world'),         # level 1 header
  4252.          $q->end_html;                  # end the HTML
  4253.  
  4254. In the function-oriented style, there is one default CGI object that
  4255. you rarely deal with directly.  Instead you just call functions to
  4256. retrieve CGI parameters, create HTML tags, manage cookies, and so
  4257. on.  This provides you with a cleaner programming interface, but
  4258. limits you to using one CGI object at a time.  The following example
  4259. prints the same page, but uses the function-oriented interface.
  4260. The main differences are that we now need to import a set of functions
  4261. into our name space (usually the "standard" functions), and we don't
  4262. need to create the CGI object.
  4263.  
  4264.    #!/usr/local/bin/perl
  4265.    use CGI qw/:standard/;           # load standard CGI routines
  4266.    print header,                    # create the HTTP header
  4267.          start_html('hello world'), # start the HTML
  4268.          h1('hello world'),         # level 1 header
  4269.          end_html;                  # end the HTML
  4270.  
  4271. The examples in this document mainly use the object-oriented style.
  4272. See HOW TO IMPORT FUNCTIONS for important information on
  4273. function-oriented programming in CGI.pm
  4274.  
  4275. =head2 CALLING CGI.PM ROUTINES
  4276.  
  4277. Most CGI.pm routines accept several arguments, sometimes as many as 20
  4278. optional ones!  To simplify this interface, all routines use a named
  4279. argument calling style that looks like this:
  4280.  
  4281.    print $q->header(-type=>'image/gif',-expires=>'+3d');
  4282.  
  4283. Each argument name is preceded by a dash.  Neither case nor order
  4284. matters in the argument list.  -type, -Type, and -TYPE are all
  4285. acceptable.  In fact, only the first argument needs to begin with a
  4286. dash.  If a dash is present in the first argument, CGI.pm assumes
  4287. dashes for the subsequent ones.
  4288.  
  4289. Several routines are commonly called with just one argument.  In the
  4290. case of these routines you can provide the single argument without an
  4291. argument name.  header() happens to be one of these routines.  In this
  4292. case, the single argument is the document type.
  4293.  
  4294.    print $q->header('text/html');
  4295.  
  4296. Other such routines are documented below.
  4297.  
  4298. Sometimes named arguments expect a scalar, sometimes a reference to an
  4299. array, and sometimes a reference to a hash.  Often, you can pass any
  4300. type of argument and the routine will do whatever is most appropriate.
  4301. For example, the param() routine is used to set a CGI parameter to a
  4302. single or a multi-valued value.  The two cases are shown below:
  4303.  
  4304.    $q->param(-name=>'veggie',-value=>'tomato');
  4305.    $q->param(-name=>'veggie',-value=>['tomato','tomahto','potato','potahto']);
  4306.  
  4307. A large number of routines in CGI.pm actually aren't specifically
  4308. defined in the module, but are generated automatically as needed.
  4309. These are the "HTML shortcuts," routines that generate HTML tags for
  4310. use in dynamically-generated pages.  HTML tags have both attributes
  4311. (the attribute="value" pairs within the tag itself) and contents (the
  4312. part between the opening and closing pairs.)  To distinguish between
  4313. attributes and contents, CGI.pm uses the convention of passing HTML
  4314. attributes as a hash reference as the first argument, and the
  4315. contents, if any, as any subsequent arguments.  It works out like
  4316. this:
  4317.  
  4318.    Code                           Generated HTML
  4319.    ----                           --------------
  4320.    h1()                           <h1>
  4321.    h1('some','contents');         <h1>some contents</h1>
  4322.    h1({-align=>left});            <h1 align="LEFT">
  4323.    h1({-align=>left},'contents'); <h1 align="LEFT">contents</h1>
  4324.  
  4325. HTML tags are described in more detail later.
  4326.  
  4327. Many newcomers to CGI.pm are puzzled by the difference between the
  4328. calling conventions for the HTML shortcuts, which require curly braces
  4329. around the HTML tag attributes, and the calling conventions for other
  4330. routines, which manage to generate attributes without the curly
  4331. brackets.  Don't be confused.  As a convenience the curly braces are
  4332. optional in all but the HTML shortcuts.  If you like, you can use
  4333. curly braces when calling any routine that takes named arguments.  For
  4334. example:
  4335.  
  4336.    print $q->header( {-type=>'image/gif',-expires=>'+3d'} );
  4337.  
  4338. If you use the B<-w> switch, you will be warned that some CGI.pm argument
  4339. names conflict with built-in Perl functions.  The most frequent of
  4340. these is the -values argument, used to create multi-valued menus,
  4341. radio button clusters and the like.  To get around this warning, you
  4342. have several choices:
  4343.  
  4344. =over 4
  4345.  
  4346. =item 1.
  4347.  
  4348. Use another name for the argument, if one is available. 
  4349. For example, -value is an alias for -values.
  4350.  
  4351. =item 2.
  4352.  
  4353. Change the capitalization, e.g. -Values
  4354.  
  4355. =item 3.
  4356.  
  4357. Put quotes around the argument name, e.g. '-values'
  4358.  
  4359. =back
  4360.  
  4361. Many routines will do something useful with a named argument that it
  4362. doesn't recognize.  For example, you can produce non-standard HTTP
  4363. header fields by providing them as named arguments:
  4364.  
  4365.   print $q->header(-type  =>  'text/html',
  4366.                    -cost  =>  'Three smackers',
  4367.                    -annoyance_level => 'high',
  4368.                    -complaints_to   => 'bit bucket');
  4369.  
  4370. This will produce the following nonstandard HTTP header:
  4371.  
  4372.    HTTP/1.0 200 OK
  4373.    Cost: Three smackers
  4374.    Annoyance-level: high
  4375.    Complaints-to: bit bucket
  4376.    Content-type: text/html
  4377.  
  4378. Notice the way that underscores are translated automatically into
  4379. hyphens.  HTML-generating routines perform a different type of
  4380. translation. 
  4381.  
  4382. This feature allows you to keep up with the rapidly changing HTTP and
  4383. HTML "standards".
  4384.  
  4385. =head2 CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
  4386.  
  4387.      $query = new CGI;
  4388.  
  4389. This will parse the input (from both POST and GET methods) and store
  4390. it into a perl5 object called $query. 
  4391.  
  4392. Any filehandles from file uploads will have their position reset to 
  4393. the beginning of the file. 
  4394.  
  4395. =head2 CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
  4396.  
  4397.      $query = new CGI(INPUTFILE);
  4398.  
  4399. If you provide a file handle to the new() method, it will read
  4400. parameters from the file (or STDIN, or whatever).  The file can be in
  4401. any of the forms describing below under debugging (i.e. a series of
  4402. newline delimited TAG=VALUE pairs will work).  Conveniently, this type
  4403. of file is created by the save() method (see below).  Multiple records
  4404. can be saved and restored.
  4405.  
  4406. Perl purists will be pleased to know that this syntax accepts
  4407. references to file handles, or even references to filehandle globs,
  4408. which is the "official" way to pass a filehandle:
  4409.  
  4410.     $query = new CGI(\*STDIN);
  4411.  
  4412. You can also initialize the CGI object with a FileHandle or IO::File
  4413. object.
  4414.  
  4415. If you are using the function-oriented interface and want to
  4416. initialize CGI state from a file handle, the way to do this is with
  4417. B<restore_parameters()>.  This will (re)initialize the
  4418. default CGI object from the indicated file handle.
  4419.  
  4420.     open (IN,"test.in") || die;
  4421.     restore_parameters(IN);
  4422.     close IN;
  4423.  
  4424. You can also initialize the query object from a hash
  4425. reference:
  4426.  
  4427.     $query = new CGI( {'dinosaur'=>'barney',
  4428.                'song'=>'I love you',
  4429.                'friends'=>[qw/Jessica George Nancy/]}
  4430.             );
  4431.  
  4432. or from a properly formatted, URL-escaped query string:
  4433.  
  4434.     $query = new CGI('dinosaur=barney&color=purple');
  4435.  
  4436. or from a previously existing CGI object (currently this clones the
  4437. parameter list, but none of the other object-specific fields, such as
  4438. autoescaping):
  4439.  
  4440.     $old_query = new CGI;
  4441.     $new_query = new CGI($old_query);
  4442.  
  4443. To create an empty query, initialize it from an empty string or hash:
  4444.  
  4445.    $empty_query = new CGI("");
  4446.  
  4447.        -or-
  4448.  
  4449.    $empty_query = new CGI({});
  4450.  
  4451. =head2 FETCHING A LIST OF KEYWORDS FROM THE QUERY:
  4452.  
  4453.      @keywords = $query->keywords
  4454.  
  4455. If the script was invoked as the result of an <ISINDEX> search, the
  4456. parsed keywords can be obtained as an array using the keywords() method.
  4457.  
  4458. =head2 FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
  4459.  
  4460.      @names = $query->param
  4461.  
  4462. If the script was invoked with a parameter list
  4463. (e.g. "name1=value1&name2=value2&name3=value3"), the param() method
  4464. will return the parameter names as a list.  If the script was invoked
  4465. as an <ISINDEX> script and contains a string without ampersands
  4466. (e.g. "value1+value2+value3") , there will be a single parameter named
  4467. "keywords" containing the "+"-delimited keywords.
  4468.  
  4469. NOTE: As of version 1.5, the array of parameter names returned will
  4470. be in the same order as they were submitted by the browser.
  4471. Usually this order is the same as the order in which the 
  4472. parameters are defined in the form (however, this isn't part
  4473. of the spec, and so isn't guaranteed).
  4474.  
  4475. =head2 FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
  4476.  
  4477.     @values = $query->param('foo');
  4478.  
  4479.           -or-
  4480.  
  4481.     $value = $query->param('foo');
  4482.  
  4483. Pass the param() method a single argument to fetch the value of the
  4484. named parameter. If the parameter is multivalued (e.g. from multiple
  4485. selections in a scrolling list), you can ask to receive an array.  Otherwise
  4486. the method will return a single value.
  4487.  
  4488. If a value is not given in the query string, as in the queries
  4489. "name1=&name2=", it will be returned as an empty string.
  4490.  
  4491.  
  4492. If the parameter does not exist at all, then param() will return undef
  4493. in a scalar context, and the empty list in a list context.
  4494.  
  4495.  
  4496. =head2 SETTING THE VALUE(S) OF A NAMED PARAMETER:
  4497.  
  4498.     $query->param('foo','an','array','of','values');
  4499.  
  4500. This sets the value for the named parameter 'foo' to an array of
  4501. values.  This is one way to change the value of a field AFTER
  4502. the script has been invoked once before.  (Another way is with
  4503. the -override parameter accepted by all methods that generate
  4504. form elements.)
  4505.  
  4506. param() also recognizes a named parameter style of calling described
  4507. in more detail later:
  4508.  
  4509.     $query->param(-name=>'foo',-values=>['an','array','of','values']);
  4510.  
  4511.                   -or-
  4512.  
  4513.     $query->param(-name=>'foo',-value=>'the value');
  4514.  
  4515. =head2 APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
  4516.  
  4517.    $query->append(-name=>'foo',-values=>['yet','more','values']);
  4518.  
  4519. This adds a value or list of values to the named parameter.  The
  4520. values are appended to the end of the parameter if it already exists.
  4521. Otherwise the parameter is created.  Note that this method only
  4522. recognizes the named argument calling syntax.
  4523.  
  4524. =head2 IMPORTING ALL PARAMETERS INTO A NAMESPACE:
  4525.  
  4526.    $query->import_names('R');
  4527.  
  4528. This creates a series of variables in the 'R' namespace.  For example,
  4529. $R::foo, @R:foo.  For keyword lists, a variable @R::keywords will appear.
  4530. If no namespace is given, this method will assume 'Q'.
  4531. WARNING:  don't import anything into 'main'; this is a major security
  4532. risk!!!!
  4533.  
  4534. NOTE 1: Variable names are transformed as necessary into legal Perl
  4535. variable names.  All non-legal characters are transformed into
  4536. underscores.  If you need to keep the original names, you should use
  4537. the param() method instead to access CGI variables by name.
  4538.  
  4539. NOTE 2: In older versions, this method was called B<import()>.  As of version 2.20, 
  4540. this name has been removed completely to avoid conflict with the built-in
  4541. Perl module B<import> operator.
  4542.  
  4543. =head2 DELETING A PARAMETER COMPLETELY:
  4544.  
  4545.     $query->delete('foo','bar','baz');
  4546.  
  4547. This completely clears a list of parameters.  It sometimes useful for
  4548. resetting parameters that you don't want passed down between script
  4549. invocations.
  4550.  
  4551. If you are using the function call interface, use "Delete()" instead
  4552. to avoid conflicts with Perl's built-in delete operator.
  4553.  
  4554. =head2 DELETING ALL PARAMETERS:
  4555.  
  4556.    $query->delete_all();
  4557.  
  4558. This clears the CGI object completely.  It might be useful to ensure
  4559. that all the defaults are taken when you create a fill-out form.
  4560.  
  4561. Use Delete_all() instead if you are using the function call interface.
  4562.  
  4563. =head2 HANDLING NON-URLENCODED ARGUMENTS
  4564.  
  4565.  
  4566. If POSTed data is not of type application/x-www-form-urlencoded or
  4567. multipart/form-data, then the POSTed data will not be processed, but
  4568. instead be returned as-is in a parameter named POSTDATA.  To retrieve
  4569. it, use code like this:
  4570.  
  4571.    my $data = $query->param('POSTDATA');
  4572.  
  4573. Likewise if PUTed data can be retrieved with code like this:
  4574.  
  4575.    my $data = $query->param('PUTDATA');
  4576.  
  4577. (If you don't know what the preceding means, don't worry about it.  It
  4578. only affects people trying to use CGI for XML processing and other
  4579. specialized tasks.)
  4580.  
  4581.  
  4582. =head2 DIRECT ACCESS TO THE PARAMETER LIST:
  4583.  
  4584.    $q->param_fetch('address')->[1] = '1313 Mockingbird Lane';
  4585.    unshift @{$q->param_fetch(-name=>'address')},'George Munster';
  4586.  
  4587. If you need access to the parameter list in a way that isn't covered
  4588. by the methods above, you can obtain a direct reference to it by
  4589. calling the B<param_fetch()> method with the name of the .  This
  4590. will return an array reference to the named parameters, which you then
  4591. can manipulate in any way you like.
  4592.  
  4593. You can also use a named argument style using the B<-name> argument.
  4594.  
  4595. =head2 FETCHING THE PARAMETER LIST AS A HASH:
  4596.  
  4597.     $params = $q->Vars;
  4598.     print $params->{'address'};
  4599.     @foo = split("\0",$params->{'foo'});
  4600.     %params = $q->Vars;
  4601.  
  4602.     use CGI ':cgi-lib';
  4603.     $params = Vars;
  4604.  
  4605. Many people want to fetch the entire parameter list as a hash in which
  4606. the keys are the names of the CGI parameters, and the values are the
  4607. parameters' values.  The Vars() method does this.  Called in a scalar
  4608. context, it returns the parameter list as a tied hash reference.
  4609. Changing a key changes the value of the parameter in the underlying
  4610. CGI parameter list.  Called in a list context, it returns the
  4611. parameter list as an ordinary hash.  This allows you to read the
  4612. contents of the parameter list, but not to change it.
  4613.  
  4614. When using this, the thing you must watch out for are multivalued CGI
  4615. parameters.  Because a hash cannot distinguish between scalar and
  4616. list context, multivalued parameters will be returned as a packed
  4617. string, separated by the "\0" (null) character.  You must split this
  4618. packed string in order to get at the individual values.  This is the
  4619. convention introduced long ago by Steve Brenner in his cgi-lib.pl
  4620. module for Perl version 4.
  4621.  
  4622. If you wish to use Vars() as a function, import the I<:cgi-lib> set of
  4623. function calls (also see the section on CGI-LIB compatibility).
  4624.  
  4625. =head2 SAVING THE STATE OF THE SCRIPT TO A FILE:
  4626.  
  4627.     $query->save(\*FILEHANDLE)
  4628.  
  4629. This will write the current state of the form to the provided
  4630. filehandle.  You can read it back in by providing a filehandle
  4631. to the new() method.  Note that the filehandle can be a file, a pipe,
  4632. or whatever!
  4633.  
  4634. The format of the saved file is:
  4635.  
  4636.     NAME1=VALUE1
  4637.     NAME1=VALUE1'
  4638.     NAME2=VALUE2
  4639.     NAME3=VALUE3
  4640.     =
  4641.  
  4642. Both name and value are URL escaped.  Multi-valued CGI parameters are
  4643. represented as repeated names.  A session record is delimited by a
  4644. single = symbol.  You can write out multiple records and read them
  4645. back in with several calls to B<new>.  You can do this across several
  4646. sessions by opening the file in append mode, allowing you to create
  4647. primitive guest books, or to keep a history of users' queries.  Here's
  4648. a short example of creating multiple session records:
  4649.  
  4650.    use CGI;
  4651.  
  4652.    open (OUT,">>test.out") || die;
  4653.    $records = 5;
  4654.    for (0..$records) {
  4655.        my $q = new CGI;
  4656.        $q->param(-name=>'counter',-value=>$_);
  4657.        $q->save(\*OUT);
  4658.    }
  4659.    close OUT;
  4660.  
  4661.    # reopen for reading
  4662.    open (IN,"test.out") || die;
  4663.    while (!eof(IN)) {
  4664.        my $q = new CGI(\*IN);
  4665.        print $q->param('counter'),"\n";
  4666.    }
  4667.  
  4668. The file format used for save/restore is identical to that used by the
  4669. Whitehead Genome Center's data exchange format "Boulderio", and can be
  4670. manipulated and even databased using Boulderio utilities.  See
  4671.  
  4672.   http://stein.cshl.org/boulder/
  4673.  
  4674. for further details.
  4675.  
  4676. If you wish to use this method from the function-oriented (non-OO)
  4677. interface, the exported name for this method is B<save_parameters()>.
  4678.  
  4679. =head2 RETRIEVING CGI ERRORS
  4680.  
  4681. Errors can occur while processing user input, particularly when
  4682. processing uploaded files.  When these errors occur, CGI will stop
  4683. processing and return an empty parameter list.  You can test for
  4684. the existence and nature of errors using the I<cgi_error()> function.
  4685. The error messages are formatted as HTTP status codes. You can either
  4686. incorporate the error text into an HTML page, or use it as the value
  4687. of the HTTP status:
  4688.  
  4689.     my $error = $q->cgi_error;
  4690.     if ($error) {
  4691.     print $q->header(-status=>$error),
  4692.           $q->start_html('Problems'),
  4693.               $q->h2('Request not processed'),
  4694.           $q->strong($error);
  4695.         exit 0;
  4696.     }
  4697.  
  4698. When using the function-oriented interface (see the next section),
  4699. errors may only occur the first time you call I<param()>. Be ready
  4700. for this!
  4701.  
  4702. =head2 USING THE FUNCTION-ORIENTED INTERFACE
  4703.  
  4704. To use the function-oriented interface, you must specify which CGI.pm
  4705. routines or sets of routines to import into your script's namespace.
  4706. There is a small overhead associated with this importation, but it
  4707. isn't much.
  4708.  
  4709.    use CGI <list of methods>;
  4710.  
  4711. The listed methods will be imported into the current package; you can
  4712. call them directly without creating a CGI object first.  This example
  4713. shows how to import the B<param()> and B<header()>
  4714. methods, and then use them directly:
  4715.  
  4716.    use CGI 'param','header';
  4717.    print header('text/plain');
  4718.    $zipcode = param('zipcode');
  4719.  
  4720. More frequently, you'll import common sets of functions by referring
  4721. to the groups by name.  All function sets are preceded with a ":"
  4722. character as in ":html3" (for tags defined in the HTML 3 standard).
  4723.  
  4724. Here is a list of the function sets you can import:
  4725.  
  4726. =over 4
  4727.  
  4728. =item B<:cgi>
  4729.  
  4730. Import all CGI-handling methods, such as B<param()>, B<path_info()>
  4731. and the like.
  4732.  
  4733. =item B<:form>
  4734.  
  4735. Import all fill-out form generating methods, such as B<textfield()>.
  4736.  
  4737. =item B<:html2>
  4738.  
  4739. Import all methods that generate HTML 2.0 standard elements.
  4740.  
  4741. =item B<:html3>
  4742.  
  4743. Import all methods that generate HTML 3.0 elements (such as
  4744. <table>, <super> and <sub>).
  4745.  
  4746. =item B<:html4>
  4747.  
  4748. Import all methods that generate HTML 4 elements (such as
  4749. <abbrev>, <acronym> and <thead>).
  4750.  
  4751. =item B<:netscape>
  4752.  
  4753. Import all methods that generate Netscape-specific HTML extensions.
  4754.  
  4755. =item B<:html>
  4756.  
  4757. Import all HTML-generating shortcuts (i.e. 'html2' + 'html3' +
  4758. 'netscape')...
  4759.  
  4760. =item B<:standard>
  4761.  
  4762. Import "standard" features, 'html2', 'html3', 'html4', 'form' and 'cgi'.
  4763.  
  4764. =item B<:all>
  4765.  
  4766. Import all the available methods.  For the full list, see the CGI.pm
  4767. code, where the variable %EXPORT_TAGS is defined.
  4768.  
  4769. =back
  4770.  
  4771. If you import a function name that is not part of CGI.pm, the module
  4772. will treat it as a new HTML tag and generate the appropriate
  4773. subroutine.  You can then use it like any other HTML tag.  This is to
  4774. provide for the rapidly-evolving HTML "standard."  For example, say
  4775. Microsoft comes out with a new tag called <gradient> (which causes the
  4776. user's desktop to be flooded with a rotating gradient fill until his
  4777. machine reboots).  You don't need to wait for a new version of CGI.pm
  4778. to start using it immediately:
  4779.  
  4780.    use CGI qw/:standard :html3 gradient/;
  4781.    print gradient({-start=>'red',-end=>'blue'});
  4782.  
  4783. Note that in the interests of execution speed CGI.pm does B<not> use
  4784. the standard L<Exporter> syntax for specifying load symbols.  This may
  4785. change in the future.
  4786.  
  4787. If you import any of the state-maintaining CGI or form-generating
  4788. methods, a default CGI object will be created and initialized
  4789. automatically the first time you use any of the methods that require
  4790. one to be present.  This includes B<param()>, B<textfield()>,
  4791. B<submit()> and the like.  (If you need direct access to the CGI
  4792. object, you can find it in the global variable B<$CGI::Q>).  By
  4793. importing CGI.pm methods, you can create visually elegant scripts:
  4794.  
  4795.    use CGI qw/:standard/;
  4796.    print 
  4797.        header,
  4798.        start_html('Simple Script'),
  4799.        h1('Simple Script'),
  4800.        start_form,
  4801.        "What's your name? ",textfield('name'),p,
  4802.        "What's the combination?",
  4803.        checkbox_group(-name=>'words',
  4804.               -values=>['eenie','meenie','minie','moe'],
  4805.               -defaults=>['eenie','moe']),p,
  4806.        "What's your favorite color?",
  4807.        popup_menu(-name=>'color',
  4808.           -values=>['red','green','blue','chartreuse']),p,
  4809.        submit,
  4810.        end_form,
  4811.        hr,"\n";
  4812.  
  4813.     if (param) {
  4814.        print 
  4815.        "Your name is ",em(param('name')),p,
  4816.        "The keywords are: ",em(join(", ",param('words'))),p,
  4817.        "Your favorite color is ",em(param('color')),".\n";
  4818.     }
  4819.     print end_html;
  4820.  
  4821. =head2 PRAGMAS
  4822.  
  4823. In addition to the function sets, there are a number of pragmas that
  4824. you can import.  Pragmas, which are always preceded by a hyphen,
  4825. change the way that CGI.pm functions in various ways.  Pragmas,
  4826. function sets, and individual functions can all be imported in the
  4827. same use() line.  For example, the following use statement imports the
  4828. standard set of functions and enables debugging mode (pragma
  4829. -debug):
  4830.  
  4831.    use CGI qw/:standard -debug/;
  4832.  
  4833. The current list of pragmas is as follows:
  4834.  
  4835. =over 4
  4836.  
  4837. =item -any
  4838.  
  4839. When you I<use CGI -any>, then any method that the query object
  4840. doesn't recognize will be interpreted as a new HTML tag.  This allows
  4841. you to support the next I<ad hoc> Netscape or Microsoft HTML
  4842. extension.  This lets you go wild with new and unsupported tags:
  4843.  
  4844.    use CGI qw(-any);
  4845.    $q=new CGI;
  4846.    print $q->gradient({speed=>'fast',start=>'red',end=>'blue'});
  4847.  
  4848. Since using <cite>any</cite> causes any mistyped method name
  4849. to be interpreted as an HTML tag, use it with care or not at
  4850. all.
  4851.  
  4852. =item -compile
  4853.  
  4854. This causes the indicated autoloaded methods to be compiled up front,
  4855. rather than deferred to later.  This is useful for scripts that run
  4856. for an extended period of time under FastCGI or mod_perl, and for
  4857. those destined to be crunched by Malcolm Beattie's Perl compiler.  Use
  4858. it in conjunction with the methods or method families you plan to use.
  4859.  
  4860.    use CGI qw(-compile :standard :html3);
  4861.  
  4862. or even
  4863.  
  4864.    use CGI qw(-compile :all);
  4865.  
  4866. Note that using the -compile pragma in this way will always have
  4867. the effect of importing the compiled functions into the current
  4868. namespace.  If you want to compile without importing use the
  4869. compile() method instead:
  4870.  
  4871.    use CGI();
  4872.    CGI->compile();
  4873.  
  4874. This is particularly useful in a mod_perl environment, in which you
  4875. might want to precompile all CGI routines in a startup script, and
  4876. then import the functions individually in each mod_perl script.
  4877.  
  4878. =item -nosticky
  4879.  
  4880. By default the CGI module implements a state-preserving behavior
  4881. called "sticky" fields.  The way this works is that if you are
  4882. regenerating a form, the methods that generate the form field values
  4883. will interrogate param() to see if similarly-named parameters are
  4884. present in the query string. If they find a like-named parameter, they
  4885. will use it to set their default values.
  4886.  
  4887. Sometimes this isn't what you want.  The B<-nosticky> pragma prevents
  4888. this behavior.  You can also selectively change the sticky behavior in
  4889. each element that you generate.
  4890.  
  4891. =item -tabindex
  4892.  
  4893. Automatically add tab index attributes to each form field. With this
  4894. option turned off, you can still add tab indexes manually by passing a
  4895. -tabindex option to each field-generating method.
  4896.  
  4897. =item -no_undef_params
  4898.  
  4899. This keeps CGI.pm from including undef params in the parameter list.
  4900.  
  4901. =item -no_xhtml
  4902.  
  4903. By default, CGI.pm versions 2.69 and higher emit XHTML
  4904. (http://www.w3.org/TR/xhtml1/).  The -no_xhtml pragma disables this
  4905. feature.  Thanks to Michalis Kabrianis <kabrianis@hellug.gr> for this
  4906. feature.
  4907.  
  4908. If start_html()'s -dtd parameter specifies an HTML 2.0 or 3.2 DTD, 
  4909. XHTML will automatically be disabled without needing to use this 
  4910. pragma.
  4911.  
  4912. =item -utf8
  4913.  
  4914. This makes CGI.pm treat all parameters as UTF-8 strings. Use this with
  4915. care, as it will interfere with the processing of binary uploads. It
  4916. is better to manually select which fields are expected to return utf-8
  4917. strings and convert them using code like this:
  4918.  
  4919.  use Encode;
  4920.  my $arg = decode utf8=>param('foo');
  4921.  
  4922. =item -nph
  4923.  
  4924. This makes CGI.pm produce a header appropriate for an NPH (no
  4925. parsed header) script.  You may need to do other things as well
  4926. to tell the server that the script is NPH.  See the discussion
  4927. of NPH scripts below.
  4928.  
  4929. =item -newstyle_urls
  4930.  
  4931. Separate the name=value pairs in CGI parameter query strings with
  4932. semicolons rather than ampersands.  For example:
  4933.  
  4934.    ?name=fred;age=24;favorite_color=3
  4935.  
  4936. Semicolon-delimited query strings are always accepted, but will not be
  4937. emitted by self_url() and query_string() unless the -newstyle_urls
  4938. pragma is specified.
  4939.  
  4940. This became the default in version 2.64.
  4941.  
  4942. =item -oldstyle_urls
  4943.  
  4944. Separate the name=value pairs in CGI parameter query strings with
  4945. ampersands rather than semicolons.  This is no longer the default.
  4946.  
  4947. =item -autoload
  4948.  
  4949. This overrides the autoloader so that any function in your program
  4950. that is not recognized is referred to CGI.pm for possible evaluation.
  4951. This allows you to use all the CGI.pm functions without adding them to
  4952. your symbol table, which is of concern for mod_perl users who are
  4953. worried about memory consumption.  I<Warning:> when
  4954. I<-autoload> is in effect, you cannot use "poetry mode"
  4955. (functions without the parenthesis).  Use I<hr()> rather
  4956. than I<hr>, or add something like I<use subs qw/hr p header/> 
  4957. to the top of your script.
  4958.  
  4959. =item -no_debug
  4960.  
  4961. This turns off the command-line processing features.  If you want to
  4962. run a CGI.pm script from the command line to produce HTML, and you
  4963. don't want it to read CGI parameters from the command line or STDIN,
  4964. then use this pragma:
  4965.  
  4966.    use CGI qw(-no_debug :standard);
  4967.  
  4968. =item -debug
  4969.  
  4970. This turns on full debugging.  In addition to reading CGI arguments
  4971. from the command-line processing, CGI.pm will pause and try to read
  4972. arguments from STDIN, producing the message "(offline mode: enter
  4973. name=value pairs on standard input)" features.
  4974.  
  4975. See the section on debugging for more details.
  4976.  
  4977. =item -private_tempfiles
  4978.  
  4979. CGI.pm can process uploaded file. Ordinarily it spools the uploaded
  4980. file to a temporary directory, then deletes the file when done.
  4981. However, this opens the risk of eavesdropping as described in the file
  4982. upload section.  Another CGI script author could peek at this data
  4983. during the upload, even if it is confidential information. On Unix
  4984. systems, the -private_tempfiles pragma will cause the temporary file
  4985. to be unlinked as soon as it is opened and before any data is written
  4986. into it, reducing, but not eliminating the risk of eavesdropping
  4987. (there is still a potential race condition).  To make life harder for
  4988. the attacker, the program chooses tempfile names by calculating a 32
  4989. bit checksum of the incoming HTTP headers.
  4990.  
  4991. To ensure that the temporary file cannot be read by other CGI scripts,
  4992. use suEXEC or a CGI wrapper program to run your script.  The temporary
  4993. file is created with mode 0600 (neither world nor group readable).
  4994.  
  4995. The temporary directory is selected using the following algorithm:
  4996.  
  4997.     1. if the current user (e.g. "nobody") has a directory named
  4998.     "tmp" in its home directory, use that (Unix systems only).
  4999.  
  5000.     2. if the environment variable TMPDIR exists, use the location
  5001.     indicated.
  5002.  
  5003.     3. Otherwise try the locations /usr/tmp, /var/tmp, C:\temp,
  5004.     /tmp, /temp, ::Temporary Items, and \WWW_ROOT.
  5005.  
  5006. Each of these locations is checked that it is a directory and is
  5007. writable.  If not, the algorithm tries the next choice.
  5008.  
  5009. =back
  5010.  
  5011. =head2 SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
  5012.  
  5013. Many of the methods generate HTML tags.  As described below, tag
  5014. functions automatically generate both the opening and closing tags.
  5015. For example:
  5016.  
  5017.   print h1('Level 1 Header');
  5018.  
  5019. produces
  5020.  
  5021.   <h1>Level 1 Header</h1>
  5022.  
  5023. There will be some times when you want to produce the start and end
  5024. tags yourself.  In this case, you can use the form start_I<tag_name>
  5025. and end_I<tag_name>, as in:
  5026.  
  5027.   print start_h1,'Level 1 Header',end_h1;
  5028.  
  5029. With a few exceptions (described below), start_I<tag_name> and
  5030. end_I<tag_name> functions are not generated automatically when you
  5031. I<use CGI>.  However, you can specify the tags you want to generate
  5032. I<start/end> functions for by putting an asterisk in front of their
  5033. name, or, alternatively, requesting either "start_I<tag_name>" or
  5034. "end_I<tag_name>" in the import list.
  5035.  
  5036. Example:
  5037.  
  5038.   use CGI qw/:standard *table start_ul/;
  5039.  
  5040. In this example, the following functions are generated in addition to
  5041. the standard ones:
  5042.  
  5043. =over 4
  5044.  
  5045. =item 1. start_table() (generates a <table> tag)
  5046.  
  5047. =item 2. end_table() (generates a </table> tag)
  5048.  
  5049. =item 3. start_ul() (generates a <ul> tag)
  5050.  
  5051. =item 4. end_ul() (generates a </ul> tag)
  5052.  
  5053. =back
  5054.  
  5055. =head1 GENERATING DYNAMIC DOCUMENTS
  5056.  
  5057. Most of CGI.pm's functions deal with creating documents on the fly.
  5058. Generally you will produce the HTTP header first, followed by the
  5059. document itself.  CGI.pm provides functions for generating HTTP
  5060. headers of various types as well as for generating HTML.  For creating
  5061. GIF images, see the GD.pm module.
  5062.  
  5063. Each of these functions produces a fragment of HTML or HTTP which you
  5064. can print out directly so that it displays in the browser window,
  5065. append to a string, or save to a file for later use.
  5066.  
  5067. =head2 CREATING A STANDARD HTTP HEADER:
  5068.  
  5069. Normally the first thing you will do in any CGI script is print out an
  5070. HTTP header.  This tells the browser what type of document to expect,
  5071. and gives other optional information, such as the language, expiration
  5072. date, and whether to cache the document.  The header can also be
  5073. manipulated for special purposes, such as server push and pay per view
  5074. pages.
  5075.  
  5076.     print header;
  5077.  
  5078.          -or-
  5079.  
  5080.     print header('image/gif');
  5081.  
  5082.          -or-
  5083.  
  5084.     print header('text/html','204 No response');
  5085.  
  5086.          -or-
  5087.  
  5088.     print header(-type=>'image/gif',
  5089.                  -nph=>1,
  5090.                  -status=>'402 Payment required',
  5091.                  -expires=>'+3d',
  5092.                  -cookie=>$cookie,
  5093.                              -charset=>'utf-7',
  5094.                              -attachment=>'foo.gif',
  5095.                  -Cost=>'$2.00');
  5096.  
  5097. header() returns the Content-type: header.  You can provide your own
  5098. MIME type if you choose, otherwise it defaults to text/html.  An
  5099. optional second parameter specifies the status code and a human-readable
  5100. message.  For example, you can specify 204, "No response" to create a
  5101. script that tells the browser to do nothing at all.
  5102.  
  5103. The last example shows the named argument style for passing arguments
  5104. to the CGI methods using named parameters.  Recognized parameters are
  5105. B<-type>, B<-status>, B<-expires>, and B<-cookie>.  Any other named
  5106. parameters will be stripped of their initial hyphens and turned into
  5107. header fields, allowing you to specify any HTTP header you desire.
  5108. Internal underscores will be turned into hyphens:
  5109.  
  5110.     print header(-Content_length=>3002);
  5111.  
  5112. Most browsers will not cache the output from CGI scripts.  Every time
  5113. the browser reloads the page, the script is invoked anew.  You can
  5114. change this behavior with the B<-expires> parameter.  When you specify
  5115. an absolute or relative expiration interval with this parameter, some
  5116. browsers and proxy servers will cache the script's output until the
  5117. indicated expiration date.  The following forms are all valid for the
  5118. -expires field:
  5119.  
  5120.     +30s                              30 seconds from now
  5121.     +10m                              ten minutes from now
  5122.     +1h                               one hour from now
  5123.     -1d                               yesterday (i.e. "ASAP!")
  5124.     now                               immediately
  5125.     +3M                               in three months
  5126.     +10y                              in ten years time
  5127.     Thursday, 25-Apr-1999 00:40:33 GMT  at the indicated time & date
  5128.  
  5129. The B<-cookie> parameter generates a header that tells the browser to provide
  5130. a "magic cookie" during all subsequent transactions with your script.
  5131. Netscape cookies have a special format that includes interesting attributes
  5132. such as expiration time.  Use the cookie() method to create and retrieve
  5133. session cookies.
  5134.  
  5135. The B<-nph> parameter, if set to a true value, will issue the correct
  5136. headers to work with a NPH (no-parse-header) script.  This is important
  5137. to use with certain servers that expect all their scripts to be NPH.
  5138.  
  5139. The B<-charset> parameter can be used to control the character set
  5140. sent to the browser.  If not provided, defaults to ISO-8859-1.  As a
  5141. side effect, this sets the charset() method as well.
  5142.  
  5143. The B<-attachment> parameter can be used to turn the page into an
  5144. attachment.  Instead of displaying the page, some browsers will prompt
  5145. the user to save it to disk.  The value of the argument is the
  5146. suggested name for the saved file.  In order for this to work, you may
  5147. have to set the B<-type> to "application/octet-stream".
  5148.  
  5149. The B<-p3p> parameter will add a P3P tag to the outgoing header.  The
  5150. parameter can be an arrayref or a space-delimited string of P3P tags.
  5151. For example:
  5152.  
  5153.    print header(-p3p=>[qw(CAO DSP LAW CURa)]);
  5154.    print header(-p3p=>'CAO DSP LAW CURa');
  5155.  
  5156. In either case, the outgoing header will be formatted as:
  5157.  
  5158.   P3P: policyref="/w3c/p3p.xml" cp="CAO DSP LAW CURa"
  5159.  
  5160. =head2 GENERATING A REDIRECTION HEADER
  5161.  
  5162.    print redirect('http://somewhere.else/in/movie/land');
  5163.  
  5164. Sometimes you don't want to produce a document yourself, but simply
  5165. redirect the browser elsewhere, perhaps choosing a URL based on the
  5166. time of day or the identity of the user.  
  5167.  
  5168. The redirect() function redirects the browser to a different URL.  If
  5169. you use redirection like this, you should B<not> print out a header as
  5170. well.
  5171.  
  5172. You should always use full URLs (including the http: or ftp: part) in
  5173. redirection requests.  Relative URLs will not work correctly.
  5174.  
  5175. You can also use named arguments:
  5176.  
  5177.     print redirect(-uri=>'http://somewhere.else/in/movie/land',
  5178.                -nph=>1,
  5179.                            -status=>301);
  5180.  
  5181. The B<-nph> parameter, if set to a true value, will issue the correct
  5182. headers to work with a NPH (no-parse-header) script.  This is important
  5183. to use with certain servers, such as Microsoft IIS, which
  5184. expect all their scripts to be NPH.
  5185.  
  5186. The B<-status> parameter will set the status of the redirect.  HTTP
  5187. defines three different possible redirection status codes:
  5188.  
  5189.      301 Moved Permanently
  5190.      302 Found
  5191.      303 See Other
  5192.  
  5193. The default if not specified is 302, which means "moved temporarily."
  5194. You may change the status to another status code if you wish.  Be
  5195. advised that changing the status to anything other than 301, 302 or
  5196. 303 will probably break redirection.
  5197.  
  5198. =head2 CREATING THE HTML DOCUMENT HEADER
  5199.  
  5200.    print start_html(-title=>'Secrets of the Pyramids',
  5201.                 -author=>'fred@capricorn.org',
  5202.                 -base=>'true',
  5203.                 -target=>'_blank',
  5204.                 -meta=>{'keywords'=>'pharaoh secret mummy',
  5205.                     'copyright'=>'copyright 1996 King Tut'},
  5206.                 -style=>{'src'=>'/styles/style1.css'},
  5207.                 -BGCOLOR=>'blue');
  5208.  
  5209. After creating the HTTP header, most CGI scripts will start writing
  5210. out an HTML document.  The start_html() routine creates the top of the
  5211. page, along with a lot of optional information that controls the
  5212. page's appearance and behavior.
  5213.  
  5214. This method returns a canned HTML header and the opening <body> tag.
  5215. All parameters are optional.  In the named parameter form, recognized
  5216. parameters are -title, -author, -base, -xbase, -dtd, -lang and -target
  5217. (see below for the explanation).  Any additional parameters you
  5218. provide, such as the Netscape unofficial BGCOLOR attribute, are added
  5219. to the <body> tag.  Additional parameters must be proceeded by a
  5220. hyphen.
  5221.  
  5222. The argument B<-xbase> allows you to provide an HREF for the <base> tag
  5223. different from the current location, as in
  5224.  
  5225.     -xbase=>"http://home.mcom.com/"
  5226.  
  5227. All relative links will be interpreted relative to this tag.
  5228.  
  5229. The argument B<-target> allows you to provide a default target frame
  5230. for all the links and fill-out forms on the page.  B<This is a
  5231. non-standard HTTP feature which only works with Netscape browsers!>
  5232. See the Netscape documentation on frames for details of how to
  5233. manipulate this.
  5234.  
  5235.     -target=>"answer_window"
  5236.  
  5237. All relative links will be interpreted relative to this tag.
  5238. You add arbitrary meta information to the header with the B<-meta>
  5239. argument.  This argument expects a reference to a hash
  5240. containing name/value pairs of meta information.  These will be turned
  5241. into a series of header <meta> tags that look something like this:
  5242.  
  5243.     <meta name="keywords" content="pharaoh secret mummy">
  5244.     <meta name="description" content="copyright 1996 King Tut">
  5245.  
  5246. To create an HTTP-EQUIV type of <meta> tag, use B<-head>, described
  5247. below.
  5248.  
  5249. The B<-style> argument is used to incorporate cascading stylesheets
  5250. into your code.  See the section on CASCADING STYLESHEETS for more
  5251. information.
  5252.  
  5253. The B<-lang> argument is used to incorporate a language attribute into
  5254. the <html> tag.  For example:
  5255.  
  5256.     print $q->start_html(-lang=>'fr-CA');
  5257.  
  5258. The default if not specified is "en-US" for US English, unless the 
  5259. -dtd parameter specifies an HTML 2.0 or 3.2 DTD, in which case the
  5260. lang attribute is left off.  You can force the lang attribute to left
  5261. off in other cases by passing an empty string (-lang=>'').
  5262.  
  5263. The B<-encoding> argument can be used to specify the character set for
  5264. XHTML.  It defaults to iso-8859-1 if not specified.
  5265.  
  5266. The B<-declare_xml> argument, when used in conjunction with XHTML,
  5267. will put a <?xml> declaration at the top of the HTML header. The sole
  5268. purpose of this declaration is to declare the character set
  5269. encoding. In the absence of -declare_xml, the output HTML will contain
  5270. a <meta> tag that specifies the encoding, allowing the HTML to pass
  5271. most validators.  The default for -declare_xml is false.
  5272.  
  5273. You can place other arbitrary HTML elements to the <head> section with the
  5274. B<-head> tag.  For example, to place the rarely-used <link> element in the
  5275. head section, use this:
  5276.  
  5277.     print start_html(-head=>Link({-rel=>'next',
  5278.                           -href=>'http://www.capricorn.com/s2.html'}));
  5279.  
  5280. To incorporate multiple HTML elements into the <head> section, just pass an
  5281. array reference:
  5282.  
  5283.     print start_html(-head=>[ 
  5284.                              Link({-rel=>'next',
  5285.                    -href=>'http://www.capricorn.com/s2.html'}),
  5286.                      Link({-rel=>'previous',
  5287.                    -href=>'http://www.capricorn.com/s1.html'})
  5288.                  ]
  5289.              );
  5290.  
  5291. And here's how to create an HTTP-EQUIV <meta> tag:
  5292.  
  5293.       print start_html(-head=>meta({-http_equiv => 'Content-Type',
  5294.                                     -content    => 'text/html'}))
  5295.  
  5296.  
  5297. JAVASCRIPTING: The B<-script>, B<-noScript>, B<-onLoad>,
  5298. B<-onMouseOver>, B<-onMouseOut> and B<-onUnload> parameters are used
  5299. to add Netscape JavaScript calls to your pages.  B<-script> should
  5300. point to a block of text containing JavaScript function definitions.
  5301. This block will be placed within a <script> block inside the HTML (not
  5302. HTTP) header.  The block is placed in the header in order to give your
  5303. page a fighting chance of having all its JavaScript functions in place
  5304. even if the user presses the stop button before the page has loaded
  5305. completely.  CGI.pm attempts to format the script in such a way that
  5306. JavaScript-naive browsers will not choke on the code: unfortunately
  5307. there are some browsers, such as Chimera for Unix, that get confused
  5308. by it nevertheless.
  5309.  
  5310. The B<-onLoad> and B<-onUnload> parameters point to fragments of JavaScript
  5311. code to execute when the page is respectively opened and closed by the
  5312. browser.  Usually these parameters are calls to functions defined in the
  5313. B<-script> field:
  5314.  
  5315.       $query = new CGI;
  5316.       print header;
  5317.       $JSCRIPT=<<END;
  5318.       // Ask a silly question
  5319.       function riddle_me_this() {
  5320.      var r = prompt("What walks on four legs in the morning, " +
  5321.                "two legs in the afternoon, " +
  5322.                "and three legs in the evening?");
  5323.      response(r);
  5324.       }
  5325.       // Get a silly answer
  5326.       function response(answer) {
  5327.      if (answer == "man")
  5328.         alert("Right you are!");
  5329.      else
  5330.         alert("Wrong!  Guess again.");
  5331.       }
  5332.       END
  5333.       print start_html(-title=>'The Riddle of the Sphinx',
  5334.                    -script=>$JSCRIPT);
  5335.  
  5336. Use the B<-noScript> parameter to pass some HTML text that will be displayed on 
  5337. browsers that do not have JavaScript (or browsers where JavaScript is turned
  5338. off).
  5339.  
  5340. The <script> tag, has several attributes including "type" and src.
  5341. The latter is particularly interesting, as it allows you to keep the
  5342. JavaScript code in a file or CGI script rather than cluttering up each
  5343. page with the source.  To use these attributes pass a HASH reference
  5344. in the B<-script> parameter containing one or more of -type, -src, or
  5345. -code:
  5346.  
  5347.     print $q->start_html(-title=>'The Riddle of the Sphinx',
  5348.              -script=>{-type=>'JAVASCRIPT',
  5349.                                    -src=>'/javascript/sphinx.js'}
  5350.              );
  5351.  
  5352.     print $q->(-title=>'The Riddle of the Sphinx',
  5353.            -script=>{-type=>'PERLSCRIPT',
  5354.              -code=>'print "hello world!\n;"'}
  5355.            );
  5356.  
  5357.  
  5358. A final feature allows you to incorporate multiple <script> sections into the
  5359. header.  Just pass the list of script sections as an array reference.
  5360. this allows you to specify different source files for different dialects
  5361. of JavaScript.  Example:
  5362.  
  5363.      print $q->start_html(-title=>'The Riddle of the Sphinx',
  5364.                           -script=>[
  5365.                                     { -type => 'text/javascript',
  5366.                                       -src      => '/javascript/utilities10.js'
  5367.                                     },
  5368.                                     { -type => 'text/javascript',
  5369.                                       -src      => '/javascript/utilities11.js'
  5370.                                     },
  5371.                                     { -type => 'text/jscript',
  5372.                                       -src      => '/javascript/utilities12.js'
  5373.                                     },
  5374.                                     { -type => 'text/ecmascript',
  5375.                                       -src      => '/javascript/utilities219.js'
  5376.                                     }
  5377.                                  ]
  5378.                              );
  5379.  
  5380. The option "-language" is a synonym for -type, and is supported for
  5381. backwad compatibility.
  5382.  
  5383. The old-style positional parameters are as follows:
  5384.  
  5385. =over 4
  5386.  
  5387. =item B<Parameters:>
  5388.  
  5389. =item 1.
  5390.  
  5391. The title
  5392.  
  5393. =item 2.
  5394.  
  5395. The author's e-mail address (will create a <link rev="MADE"> tag if present
  5396.  
  5397. =item 3.
  5398.  
  5399. A 'true' flag if you want to include a <base> tag in the header.  This
  5400. helps resolve relative addresses to absolute ones when the document is moved, 
  5401. but makes the document hierarchy non-portable.  Use with care!
  5402.  
  5403. =item 4, 5, 6...
  5404.  
  5405. Any other parameters you want to include in the <body> tag.  This is a good
  5406. place to put Netscape extensions, such as colors and wallpaper patterns.
  5407.  
  5408. =back
  5409.  
  5410. =head2 ENDING THE HTML DOCUMENT:
  5411.  
  5412.     print end_html
  5413.  
  5414. This ends an HTML document by printing the </body></html> tags.
  5415.  
  5416. =head2 CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
  5417.  
  5418.     $myself = self_url;
  5419.     print q(<a href="$myself">I'm talking to myself.</a>);
  5420.  
  5421. self_url() will return a URL, that, when selected, will reinvoke
  5422. this script with all its state information intact.  This is most
  5423. useful when you want to jump around within the document using
  5424. internal anchors but you don't want to disrupt the current contents
  5425. of the form(s).  Something like this will do the trick.
  5426.  
  5427.      $myself = self_url;
  5428.      print "<a href=\"$myself#table1\">See table 1</a>";
  5429.      print "<a href=\"$myself#table2\">See table 2</a>";
  5430.      print "<a href=\"$myself#yourself\">See for yourself</a>";
  5431.  
  5432. If you want more control over what's returned, using the B<url()>
  5433. method instead.
  5434.  
  5435. You can also retrieve the unprocessed query string with query_string():
  5436.  
  5437.     $the_string = query_string;
  5438.  
  5439. =head2 OBTAINING THE SCRIPT'S URL
  5440.  
  5441.     $full_url      = url();
  5442.     $full_url      = url(-full=>1);  #alternative syntax
  5443.     $relative_url  = url(-relative=>1);
  5444.     $absolute_url  = url(-absolute=>1);
  5445.     $url_with_path = url(-path_info=>1);
  5446.     $url_with_path_and_query = url(-path_info=>1,-query=>1);
  5447.     $netloc        = url(-base => 1);
  5448.  
  5449. B<url()> returns the script's URL in a variety of formats.  Called
  5450. without any arguments, it returns the full form of the URL, including
  5451. host name and port number
  5452.  
  5453.     http://your.host.com/path/to/script.cgi
  5454.  
  5455. You can modify this format with the following named arguments:
  5456.  
  5457. =over 4
  5458.  
  5459. =item B<-absolute>
  5460.  
  5461. If true, produce an absolute URL, e.g.
  5462.  
  5463.     /path/to/script.cgi
  5464.  
  5465. =item B<-relative>
  5466.  
  5467. Produce a relative URL.  This is useful if you want to reinvoke your
  5468. script with different parameters. For example:
  5469.  
  5470.     script.cgi
  5471.  
  5472. =item B<-full>
  5473.  
  5474. Produce the full URL, exactly as if called without any arguments.
  5475. This overrides the -relative and -absolute arguments.
  5476.  
  5477. =item B<-path> (B<-path_info>)
  5478.  
  5479. Append the additional path information to the URL.  This can be
  5480. combined with B<-full>, B<-absolute> or B<-relative>.  B<-path_info>
  5481. is provided as a synonym.
  5482.  
  5483. =item B<-query> (B<-query_string>)
  5484.  
  5485. Append the query string to the URL.  This can be combined with
  5486. B<-full>, B<-absolute> or B<-relative>.  B<-query_string> is provided
  5487. as a synonym.
  5488.  
  5489. =item B<-base>
  5490.  
  5491. Generate just the protocol and net location, as in http://www.foo.com:8000
  5492.  
  5493. =item B<-rewrite>
  5494.  
  5495. If Apache's mod_rewrite is turned on, then the script name and path
  5496. info probably won't match the request that the user sent. Set
  5497. -rewrite=>1 (default) to return URLs that match what the user sent
  5498. (the original request URI). Set -rewrite=>0 to return URLs that match
  5499. the URL after mod_rewrite's rules have run. Because the additional
  5500. path information only makes sense in the context of the rewritten URL,
  5501. -rewrite is set to false when you request path info in the URL.
  5502.  
  5503. =back
  5504.  
  5505. =head2 MIXING POST AND URL PARAMETERS
  5506.  
  5507.    $color = url_param('color');
  5508.  
  5509. It is possible for a script to receive CGI parameters in the URL as
  5510. well as in the fill-out form by creating a form that POSTs to a URL
  5511. containing a query string (a "?" mark followed by arguments).  The
  5512. B<param()> method will always return the contents of the POSTed
  5513. fill-out form, ignoring the URL's query string.  To retrieve URL
  5514. parameters, call the B<url_param()> method.  Use it in the same way as
  5515. B<param()>.  The main difference is that it allows you to read the
  5516. parameters, but not set them.
  5517.  
  5518.  
  5519. Under no circumstances will the contents of the URL query string
  5520. interfere with similarly-named CGI parameters in POSTed forms.  If you
  5521. try to mix a URL query string with a form submitted with the GET
  5522. method, the results will not be what you expect.
  5523.  
  5524. =head1 CREATING STANDARD HTML ELEMENTS:
  5525.  
  5526. CGI.pm defines general HTML shortcut methods for most, if not all of
  5527. the HTML 3 and HTML 4 tags.  HTML shortcuts are named after a single
  5528. HTML element and return a fragment of HTML text that you can then
  5529. print or manipulate as you like.  Each shortcut returns a fragment of
  5530. HTML code that you can append to a string, save to a file, or, most
  5531. commonly, print out so that it displays in the browser window.
  5532.  
  5533. This example shows how to use the HTML methods:
  5534.  
  5535.    print $q->blockquote(
  5536.              "Many years ago on the island of",
  5537.              $q->a({href=>"http://crete.org/"},"Crete"),
  5538.              "there lived a Minotaur named",
  5539.              $q->strong("Fred."),
  5540.             ),
  5541.        $q->hr;
  5542.  
  5543. This results in the following HTML code (extra newlines have been
  5544. added for readability):
  5545.  
  5546.    <blockquote>
  5547.    Many years ago on the island of
  5548.    <a href="http://crete.org/">Crete</a> there lived
  5549.    a minotaur named <strong>Fred.</strong> 
  5550.    </blockquote>
  5551.    <hr>
  5552.  
  5553. If you find the syntax for calling the HTML shortcuts awkward, you can
  5554. import them into your namespace and dispense with the object syntax
  5555. completely (see the next section for more details):
  5556.  
  5557.    use CGI ':standard';
  5558.    print blockquote(
  5559.       "Many years ago on the island of",
  5560.       a({href=>"http://crete.org/"},"Crete"),
  5561.       "there lived a minotaur named",
  5562.       strong("Fred."),
  5563.       ),
  5564.       hr;
  5565.  
  5566. =head2 PROVIDING ARGUMENTS TO HTML SHORTCUTS
  5567.  
  5568. The HTML methods will accept zero, one or multiple arguments.  If you
  5569. provide no arguments, you get a single tag:
  5570.  
  5571.    print hr;      #  <hr>
  5572.  
  5573. If you provide one or more string arguments, they are concatenated
  5574. together with spaces and placed between opening and closing tags:
  5575.  
  5576.    print h1("Chapter","1"); # <h1>Chapter 1</h1>"
  5577.  
  5578. If the first argument is a hash reference, then the keys
  5579. and values of the hash become the HTML tag's attributes:
  5580.  
  5581.    print a({-href=>'fred.html',-target=>'_new'},
  5582.       "Open a new frame");
  5583.  
  5584.         <a href="fred.html",target="_new">Open a new frame</a>
  5585.  
  5586. You may dispense with the dashes in front of the attribute names if
  5587. you prefer:
  5588.  
  5589.    print img {src=>'fred.gif',align=>'LEFT'};
  5590.  
  5591.        <img align="LEFT" src="fred.gif">
  5592.  
  5593. Sometimes an HTML tag attribute has no argument.  For example, ordered
  5594. lists can be marked as COMPACT.  The syntax for this is an argument that
  5595. that points to an undef string:
  5596.  
  5597.    print ol({compact=>undef},li('one'),li('two'),li('three'));
  5598.  
  5599. Prior to CGI.pm version 2.41, providing an empty ('') string as an
  5600. attribute argument was the same as providing undef.  However, this has
  5601. changed in order to accommodate those who want to create tags of the form 
  5602. <img alt="">.  The difference is shown in these two pieces of code:
  5603.  
  5604.    CODE                   RESULT
  5605.    img({alt=>undef})      <img alt>
  5606.    img({alt=>''})         <img alt="">
  5607.  
  5608. =head2 THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
  5609.  
  5610. One of the cool features of the HTML shortcuts is that they are
  5611. distributive.  If you give them an argument consisting of a
  5612. B<reference> to a list, the tag will be distributed across each
  5613. element of the list.  For example, here's one way to make an ordered
  5614. list:
  5615.  
  5616.    print ul(
  5617.              li({-type=>'disc'},['Sneezy','Doc','Sleepy','Happy'])
  5618.            );
  5619.  
  5620. This example will result in HTML output that looks like this:
  5621.  
  5622.    <ul>
  5623.      <li type="disc">Sneezy</li>
  5624.      <li type="disc">Doc</li>
  5625.      <li type="disc">Sleepy</li>
  5626.      <li type="disc">Happy</li>
  5627.    </ul>
  5628.  
  5629. This is extremely useful for creating tables.  For example:
  5630.  
  5631.    print table({-border=>undef},
  5632.            caption('When Should You Eat Your Vegetables?'),
  5633.            Tr({-align=>CENTER,-valign=>TOP},
  5634.            [
  5635.               th(['Vegetable', 'Breakfast','Lunch','Dinner']),
  5636.               td(['Tomatoes' , 'no', 'yes', 'yes']),
  5637.               td(['Broccoli' , 'no', 'no',  'yes']),
  5638.               td(['Onions'   , 'yes','yes', 'yes'])
  5639.            ]
  5640.            )
  5641.         );
  5642.  
  5643. =head2 HTML SHORTCUTS AND LIST INTERPOLATION
  5644.  
  5645. Consider this bit of code:
  5646.  
  5647.    print blockquote(em('Hi'),'mom!'));
  5648.  
  5649. It will ordinarily return the string that you probably expect, namely:
  5650.  
  5651.    <blockquote><em>Hi</em> mom!</blockquote>
  5652.  
  5653. Note the space between the element "Hi" and the element "mom!".
  5654. CGI.pm puts the extra space there using array interpolation, which is
  5655. controlled by the magic $" variable.  Sometimes this extra space is
  5656. not what you want, for example, when you are trying to align a series
  5657. of images.  In this case, you can simply change the value of $" to an
  5658. empty string.
  5659.  
  5660.    {
  5661.       local($") = '';
  5662.       print blockquote(em('Hi'),'mom!'));
  5663.     }
  5664.  
  5665. I suggest you put the code in a block as shown here.  Otherwise the
  5666. change to $" will affect all subsequent code until you explicitly
  5667. reset it.
  5668.  
  5669. =head2 NON-STANDARD HTML SHORTCUTS
  5670.  
  5671. A few HTML tags don't follow the standard pattern for various
  5672. reasons.  
  5673.  
  5674. B<comment()> generates an HTML comment (<!-- comment -->).  Call it
  5675. like
  5676.  
  5677.     print comment('here is my comment');
  5678.  
  5679. Because of conflicts with built-in Perl functions, the following functions
  5680. begin with initial caps:
  5681.  
  5682.     Select
  5683.     Tr
  5684.     Link
  5685.     Delete
  5686.     Accept
  5687.     Sub
  5688.  
  5689. In addition, start_html(), end_html(), start_form(), end_form(),
  5690. start_multipart_form() and all the fill-out form tags are special.
  5691. See their respective sections.
  5692.  
  5693. =head2 AUTOESCAPING HTML
  5694.  
  5695. By default, all HTML that is emitted by the form-generating functions
  5696. is passed through a function called escapeHTML():
  5697.  
  5698. =over 4
  5699.  
  5700. =item $escaped_string = escapeHTML("unescaped string");
  5701.  
  5702. Escape HTML formatting characters in a string.
  5703.  
  5704. =back
  5705.  
  5706. Provided that you have specified a character set of ISO-8859-1 (the
  5707. default), the standard HTML escaping rules will be used.  The "<"
  5708. character becomes "<", ">" becomes ">", "&" becomes "&", and
  5709. the quote character becomes """.  In addition, the hexadecimal
  5710. 0x8b and 0x9b characters, which some browsers incorrectly interpret
  5711. as the left and right angle-bracket characters, are replaced by their
  5712. numeric character entities ("‹" and "›").  If you manually change
  5713. the charset, either by calling the charset() method explicitly or by
  5714. passing a -charset argument to header(), then B<all> characters will
  5715. be replaced by their numeric entities, since CGI.pm has no lookup
  5716. table for all the possible encodings.
  5717.  
  5718. The automatic escaping does not apply to other shortcuts, such as
  5719. h1().  You should call escapeHTML() yourself on untrusted data in
  5720. order to protect your pages against nasty tricks that people may enter
  5721. into guestbooks, etc..  To change the character set, use charset().
  5722. To turn autoescaping off completely, use autoEscape(0):
  5723.  
  5724. =over 4
  5725.  
  5726. =item $charset = charset([$charset]);
  5727.  
  5728. Get or set the current character set.
  5729.  
  5730. =item $flag = autoEscape([$flag]);
  5731.  
  5732. Get or set the value of the autoescape flag.
  5733.  
  5734. =back
  5735.  
  5736. =head2 PRETTY-PRINTING HTML
  5737.  
  5738. By default, all the HTML produced by these functions comes out as one
  5739. long line without carriage returns or indentation. This is yuck, but
  5740. it does reduce the size of the documents by 10-20%.  To get
  5741. pretty-printed output, please use L<CGI::Pretty>, a subclass
  5742. contributed by Brian Paulsen.
  5743.  
  5744. =head1 CREATING FILL-OUT FORMS:
  5745.  
  5746. I<General note>  The various form-creating methods all return strings
  5747. to the caller, containing the tag or tags that will create the requested
  5748. form element.  You are responsible for actually printing out these strings.
  5749. It's set up this way so that you can place formatting tags
  5750. around the form elements.
  5751.  
  5752. I<Another note> The default values that you specify for the forms are only
  5753. used the B<first> time the script is invoked (when there is no query
  5754. string).  On subsequent invocations of the script (when there is a query
  5755. string), the former values are used even if they are blank.  
  5756.  
  5757. If you want to change the value of a field from its previous value, you have two
  5758. choices:
  5759.  
  5760. (1) call the param() method to set it.
  5761.  
  5762. (2) use the -override (alias -force) parameter (a new feature in version 2.15).
  5763. This forces the default value to be used, regardless of the previous value:
  5764.  
  5765.    print textfield(-name=>'field_name',
  5766.                -default=>'starting value',
  5767.                -override=>1,
  5768.                -size=>50,
  5769.                -maxlength=>80);
  5770.  
  5771. I<Yet another note> By default, the text and labels of form elements are
  5772. escaped according to HTML rules.  This means that you can safely use
  5773. "<CLICK ME>" as the label for a button.  However, it also interferes with
  5774. your ability to incorporate special HTML character sequences, such as Á,
  5775. into your fields.  If you wish to turn off automatic escaping, call the
  5776. autoEscape() method with a false value immediately after creating the CGI object:
  5777.  
  5778.    $query = new CGI;
  5779.    autoEscape(undef);
  5780.  
  5781. I<A Lurking Trap!> Some of the form-element generating methods return
  5782. multiple tags.  In a scalar context, the tags will be concatenated
  5783. together with spaces, or whatever is the current value of the $"
  5784. global.  In a list context, the methods will return a list of
  5785. elements, allowing you to modify them if you wish.  Usually you will
  5786. not notice this behavior, but beware of this:
  5787.  
  5788.     printf("%s\n",end_form())
  5789.  
  5790. end_form() produces several tags, and only the first of them will be
  5791. printed because the format only expects one value.
  5792.  
  5793. <p>
  5794.  
  5795.  
  5796. =head2 CREATING AN ISINDEX TAG
  5797.  
  5798.    print isindex(-action=>$action);
  5799.  
  5800.      -or-
  5801.  
  5802.    print isindex($action);
  5803.  
  5804. Prints out an <isindex> tag.  Not very exciting.  The parameter
  5805. -action specifies the URL of the script to process the query.  The
  5806. default is to process the query with the current script.
  5807.  
  5808. =head2 STARTING AND ENDING A FORM
  5809.  
  5810.     print start_form(-method=>$method,
  5811.             -action=>$action,
  5812.             -enctype=>$encoding);
  5813.       <... various form stuff ...>
  5814.     print endform;
  5815.  
  5816.     -or-
  5817.  
  5818.     print start_form($method,$action,$encoding);
  5819.       <... various form stuff ...>
  5820.     print endform;
  5821.  
  5822. start_form() will return a <form> tag with the optional method,
  5823. action and form encoding that you specify.  The defaults are:
  5824.  
  5825.     method: POST
  5826.     action: this script
  5827.     enctype: application/x-www-form-urlencoded
  5828.  
  5829. endform() returns the closing </form> tag.  
  5830.  
  5831. Start_form()'s enctype argument tells the browser how to package the various
  5832. fields of the form before sending the form to the server.  Two
  5833. values are possible:
  5834.  
  5835. B<Note:> This method was previously named startform(), and startform()
  5836. is still recognized as an alias.
  5837.  
  5838. =over 4
  5839.  
  5840. =item B<application/x-www-form-urlencoded>
  5841.  
  5842. This is the older type of encoding used by all browsers prior to
  5843. Netscape 2.0.  It is compatible with many CGI scripts and is
  5844. suitable for short fields containing text data.  For your
  5845. convenience, CGI.pm stores the name of this encoding
  5846. type in B<&CGI::URL_ENCODED>.
  5847.  
  5848. =item B<multipart/form-data>
  5849.  
  5850. This is the newer type of encoding introduced by Netscape 2.0.
  5851. It is suitable for forms that contain very large fields or that
  5852. are intended for transferring binary data.  Most importantly,
  5853. it enables the "file upload" feature of Netscape 2.0 forms.  For
  5854. your convenience, CGI.pm stores the name of this encoding type
  5855. in B<&CGI::MULTIPART>
  5856.  
  5857. Forms that use this type of encoding are not easily interpreted
  5858. by CGI scripts unless they use CGI.pm or another library designed
  5859. to handle them.
  5860.  
  5861. If XHTML is activated (the default), then forms will be automatically
  5862. created using this type of encoding.
  5863.  
  5864. =back
  5865.  
  5866. For compatibility, the start_form() method uses the older form of
  5867. encoding by default.  If you want to use the newer form of encoding
  5868. by default, you can call B<start_multipart_form()> instead of
  5869. B<start_form()>.
  5870.  
  5871. JAVASCRIPTING: The B<-name> and B<-onSubmit> parameters are provided
  5872. for use with JavaScript.  The -name parameter gives the
  5873. form a name so that it can be identified and manipulated by
  5874. JavaScript functions.  -onSubmit should point to a JavaScript
  5875. function that will be executed just before the form is submitted to your
  5876. server.  You can use this opportunity to check the contents of the form 
  5877. for consistency and completeness.  If you find something wrong, you
  5878. can put up an alert box or maybe fix things up yourself.  You can 
  5879. abort the submission by returning false from this function.  
  5880.  
  5881. Usually the bulk of JavaScript functions are defined in a <script>
  5882. block in the HTML header and -onSubmit points to one of these function
  5883. call.  See start_html() for details.
  5884.  
  5885. =head2 FORM ELEMENTS
  5886.  
  5887. After starting a form, you will typically create one or more
  5888. textfields, popup menus, radio groups and other form elements.  Each
  5889. of these elements takes a standard set of named arguments.  Some
  5890. elements also have optional arguments.  The standard arguments are as
  5891. follows:
  5892.  
  5893. =over 4
  5894.  
  5895. =item B<-name>
  5896.  
  5897. The name of the field. After submission this name can be used to
  5898. retrieve the field's value using the param() method.
  5899.  
  5900. =item B<-value>, B<-values>
  5901.  
  5902. The initial value of the field which will be returned to the script
  5903. after form submission.  Some form elements, such as text fields, take
  5904. a single scalar -value argument. Others, such as popup menus, take a
  5905. reference to an array of values. The two arguments are synonyms.
  5906.  
  5907. =item B<-tabindex>
  5908.  
  5909. A numeric value that sets the order in which the form element receives
  5910. focus when the user presses the tab key. Elements with lower values
  5911. receive focus first.
  5912.  
  5913. =item B<-id>
  5914.  
  5915. A string identifier that can be used to identify this element to
  5916. JavaScript and DHTML.
  5917.  
  5918. =item B<-override>
  5919.  
  5920. A boolean, which, if true, forces the element to take on the value
  5921. specified by B<-value>, overriding the sticky behavior described
  5922. earlier for the B<-no_sticky> pragma.
  5923.  
  5924. =item B<-onChange>, B<-onFocus>, B<-onBlur>, B<-onMouseOver>, B<-onMouseOut>, B<-onSelect>
  5925.  
  5926. These are used to assign JavaScript event handlers. See the
  5927. JavaScripting section for more details.
  5928.  
  5929. =back
  5930.  
  5931. Other common arguments are described in the next section. In addition
  5932. to these, all attributes described in the HTML specifications are
  5933. supported.
  5934.  
  5935. =head2 CREATING A TEXT FIELD
  5936.  
  5937.     print textfield(-name=>'field_name',
  5938.             -value=>'starting value',
  5939.             -size=>50,
  5940.             -maxlength=>80);
  5941.     -or-
  5942.  
  5943.     print textfield('field_name','starting value',50,80);
  5944.  
  5945. textfield() will return a text input field. 
  5946.  
  5947. =over 4
  5948.  
  5949. =item B<Parameters>
  5950.  
  5951. =item 1.
  5952.  
  5953. The first parameter is the required name for the field (-name). 
  5954.  
  5955. =item 2.
  5956.  
  5957. The optional second parameter is the default starting value for the field
  5958. contents (-value, formerly known as -default).
  5959.  
  5960. =item 3.
  5961.  
  5962. The optional third parameter is the size of the field in
  5963.       characters (-size).
  5964.  
  5965. =item 4.
  5966.  
  5967. The optional fourth parameter is the maximum number of characters the
  5968.       field will accept (-maxlength).
  5969.  
  5970. =back
  5971.  
  5972. As with all these methods, the field will be initialized with its 
  5973. previous contents from earlier invocations of the script.
  5974. When the form is processed, the value of the text field can be
  5975. retrieved with:
  5976.  
  5977.        $value = param('foo');
  5978.  
  5979. If you want to reset it from its initial value after the script has been
  5980. called once, you can do so like this:
  5981.  
  5982.        param('foo',"I'm taking over this value!");
  5983.  
  5984. =head2 CREATING A BIG TEXT FIELD
  5985.  
  5986.    print textarea(-name=>'foo',
  5987.               -default=>'starting value',
  5988.               -rows=>10,
  5989.               -columns=>50);
  5990.  
  5991.     -or
  5992.  
  5993.    print textarea('foo','starting value',10,50);
  5994.  
  5995. textarea() is just like textfield, but it allows you to specify
  5996. rows and columns for a multiline text entry box.  You can provide
  5997. a starting value for the field, which can be long and contain
  5998. multiple lines.
  5999.  
  6000. =head2 CREATING A PASSWORD FIELD
  6001.  
  6002.    print password_field(-name=>'secret',
  6003.                 -value=>'starting value',
  6004.                 -size=>50,
  6005.                 -maxlength=>80);
  6006.     -or-
  6007.  
  6008.    print password_field('secret','starting value',50,80);
  6009.  
  6010. password_field() is identical to textfield(), except that its contents 
  6011. will be starred out on the web page.
  6012.  
  6013. =head2 CREATING A FILE UPLOAD FIELD
  6014.  
  6015.     print filefield(-name=>'uploaded_file',
  6016.                 -default=>'starting value',
  6017.                 -size=>50,
  6018.                 -maxlength=>80);
  6019.     -or-
  6020.  
  6021.     print filefield('uploaded_file','starting value',50,80);
  6022.  
  6023. filefield() will return a file upload field for Netscape 2.0 browsers.
  6024. In order to take full advantage of this I<you must use the new 
  6025. multipart encoding scheme> for the form.  You can do this either
  6026. by calling B<start_form()> with an encoding type of B<&CGI::MULTIPART>,
  6027. or by calling the new method B<start_multipart_form()> instead of
  6028. vanilla B<start_form()>.
  6029.  
  6030. =over 4
  6031.  
  6032. =item B<Parameters>
  6033.  
  6034. =item 1.
  6035.  
  6036. The first parameter is the required name for the field (-name).  
  6037.  
  6038. =item 2.
  6039.  
  6040. The optional second parameter is the starting value for the field contents
  6041. to be used as the default file name (-default).
  6042.  
  6043. For security reasons, browsers don't pay any attention to this field,
  6044. and so the starting value will always be blank.  Worse, the field
  6045. loses its "sticky" behavior and forgets its previous contents.  The
  6046. starting value field is called for in the HTML specification, however,
  6047. and possibly some browser will eventually provide support for it.
  6048.  
  6049. =item 3.
  6050.  
  6051. The optional third parameter is the size of the field in
  6052. characters (-size).
  6053.  
  6054. =item 4.
  6055.  
  6056. The optional fourth parameter is the maximum number of characters the
  6057. field will accept (-maxlength).
  6058.  
  6059. =back
  6060.  
  6061. When the form is processed, you can retrieve the entered filename
  6062. by calling param():
  6063.  
  6064.        $filename = param('uploaded_file');
  6065.  
  6066. Different browsers will return slightly different things for the
  6067. name.  Some browsers return the filename only.  Others return the full
  6068. path to the file, using the path conventions of the user's machine.
  6069. Regardless, the name returned is always the name of the file on the
  6070. I<user's> machine, and is unrelated to the name of the temporary file
  6071. that CGI.pm creates during upload spooling (see below).
  6072.  
  6073. The filename returned is also a file handle.  You can read the contents
  6074. of the file using standard Perl file reading calls:
  6075.  
  6076.     # Read a text file and print it out
  6077.     while (<$filename>) {
  6078.        print;
  6079.     }
  6080.  
  6081.     # Copy a binary file to somewhere safe
  6082.     open (OUTFILE,">>/usr/local/web/users/feedback");
  6083.     while ($bytesread=read($filename,$buffer,1024)) {
  6084.        print OUTFILE $buffer;
  6085.     }
  6086.  
  6087. However, there are problems with the dual nature of the upload fields.
  6088. If you C<use strict>, then Perl will complain when you try to use a
  6089. string as a filehandle.  You can get around this by placing the file
  6090. reading code in a block containing the C<no strict> pragma.  More
  6091. seriously, it is possible for the remote user to type garbage into the
  6092. upload field, in which case what you get from param() is not a
  6093. filehandle at all, but a string.
  6094.  
  6095. To be safe, use the I<upload()> function (new in version 2.47).  When
  6096. called with the name of an upload field, I<upload()> returns a
  6097. filehandle-like object, or undef if the parameter is not a valid
  6098. filehandle.
  6099.  
  6100.      $fh = upload('uploaded_file');
  6101.      while (<$fh>) {
  6102.        print;
  6103.      }
  6104.  
  6105. In a list context, upload() will return an array of filehandles.
  6106. This makes it possible to create forms that use the same name for
  6107. multiple upload fields.
  6108.  
  6109. This is the recommended idiom.
  6110.  
  6111. The lightweight filehandle returned by CGI.pm is not compatible with
  6112. IO::Handle; for example, it does not have read() or getline()
  6113. functions, but instead must be manipulated using read($fh) or
  6114. <$fh>. To get a compatible IO::Handle object, call the handle's
  6115. handle() method:
  6116.  
  6117.   my $real_io_handle = upload('uploaded_file')->handle;
  6118.  
  6119. When a file is uploaded the browser usually sends along some
  6120. information along with it in the format of headers.  The information
  6121. usually includes the MIME content type.  Future browsers may send
  6122. other information as well (such as modification date and size). To
  6123. retrieve this information, call uploadInfo().  It returns a reference to
  6124. a hash containing all the document headers.
  6125.  
  6126.        $filename = param('uploaded_file');
  6127.        $type = uploadInfo($filename)->{'Content-Type'};
  6128.        unless ($type eq 'text/html') {
  6129.       die "HTML FILES ONLY!";
  6130.        }
  6131.  
  6132. If you are using a machine that recognizes "text" and "binary" data
  6133. modes, be sure to understand when and how to use them (see the Camel book).  
  6134. Otherwise you may find that binary files are corrupted during file
  6135. uploads.
  6136.  
  6137. There are occasionally problems involving parsing the uploaded file.
  6138. This usually happens when the user presses "Stop" before the upload is
  6139. finished.  In this case, CGI.pm will return undef for the name of the
  6140. uploaded file and set I<cgi_error()> to the string "400 Bad request
  6141. (malformed multipart POST)".  This error message is designed so that
  6142. you can incorporate it into a status code to be sent to the browser.
  6143. Example:
  6144.  
  6145.    $file = upload('uploaded_file');
  6146.    if (!$file && cgi_error) {
  6147.       print header(-status=>cgi_error);
  6148.       exit 0;
  6149.    }
  6150.  
  6151. You are free to create a custom HTML page to complain about the error,
  6152. if you wish.
  6153.  
  6154. You can set up a callback that will be called whenever a file upload
  6155. is being read during the form processing. This is much like the
  6156. UPLOAD_HOOK facility available in Apache::Request, with the exception
  6157. that the first argument to the callback is an Apache::Upload object,
  6158. here it's the remote filename.
  6159.  
  6160.  $q = CGI->new(\&hook [,$data [,$use_tempfile]]);
  6161.  
  6162.  sub hook
  6163.  {
  6164.         my ($filename, $buffer, $bytes_read, $data) = @_;
  6165.         print  "Read $bytes_read bytes of $filename\n";         
  6166.  }
  6167.  
  6168. The $data field is optional; it lets you pass configuration
  6169. information (e.g. a database handle) to your hook callback.
  6170.  
  6171. The $use_tempfile field is a flag that lets you turn on and off
  6172. CGI.pm's use of a temporary disk-based file during file upload. If you
  6173. set this to a FALSE value (default true) then param('uploaded_file')
  6174. will no longer work, and the only way to get at the uploaded data is
  6175. via the hook you provide.
  6176.  
  6177. If using the function-oriented interface, call the CGI::upload_hook()
  6178. method before calling param() or any other CGI functions:
  6179.  
  6180.   CGI::upload_hook(\&hook [,$data [,$use_tempfile]]);
  6181.  
  6182. This method is not exported by default.  You will have to import it
  6183. explicitly if you wish to use it without the CGI:: prefix.
  6184.  
  6185. If you are using CGI.pm on a Windows platform and find that binary
  6186. files get slightly larger when uploaded but that text files remain the
  6187. same, then you have forgotten to activate binary mode on the output
  6188. filehandle.  Be sure to call binmode() on any handle that you create
  6189. to write the uploaded file to disk.
  6190.  
  6191. JAVASCRIPTING: The B<-onChange>, B<-onFocus>, B<-onBlur>,
  6192. B<-onMouseOver>, B<-onMouseOut> and B<-onSelect> parameters are
  6193. recognized.  See textfield() for details.
  6194.  
  6195. =head2 CREATING A POPUP MENU
  6196.  
  6197.    print popup_menu('menu_name',
  6198.                 ['eenie','meenie','minie'],
  6199.                 'meenie');
  6200.  
  6201.       -or-
  6202.  
  6203.    %labels = ('eenie'=>'your first choice',
  6204.           'meenie'=>'your second choice',
  6205.           'minie'=>'your third choice');
  6206.    %attributes = ('eenie'=>{'class'=>'class of first choice'});
  6207.    print popup_menu('menu_name',
  6208.                 ['eenie','meenie','minie'],
  6209.           'meenie',\%labels,\%attributes);
  6210.  
  6211.     -or (named parameter style)-
  6212.  
  6213.    print popup_menu(-name=>'menu_name',
  6214.                 -values=>['eenie','meenie','minie'],
  6215.                 -default=>['meenie','minie'],
  6216.           -labels=>\%labels,
  6217.           -attributes=>\%attributes);
  6218.  
  6219. popup_menu() creates a menu.
  6220.  
  6221. =over 4
  6222.  
  6223. =item 1.
  6224.  
  6225. The required first argument is the menu's name (-name).
  6226.  
  6227. =item 2.
  6228.  
  6229. The required second argument (-values) is an array B<reference>
  6230. containing the list of menu items in the menu.  You can pass the
  6231. method an anonymous array, as shown in the example, or a reference to
  6232. a named array, such as "\@foo".
  6233.  
  6234. =item 3.
  6235.  
  6236. The optional third parameter (-default) is the name of the default
  6237. menu choice.  If not specified, the first item will be the default.
  6238. The values of the previous choice will be maintained across
  6239. queries. Pass an array reference to select multiple defaults.
  6240.  
  6241. =item 4.
  6242.  
  6243. The optional fourth parameter (-labels) is provided for people who
  6244. want to use different values for the user-visible label inside the
  6245. popup menu and the value returned to your script.  It's a pointer to an
  6246. hash relating menu values to user-visible labels.  If you
  6247. leave this parameter blank, the menu values will be displayed by
  6248. default.  (You can also leave a label undefined if you want to).
  6249.  
  6250. =item 5.
  6251.  
  6252. The optional fifth parameter (-attributes) is provided to assign
  6253. any of the common HTML attributes to an individual menu item. It's
  6254. a pointer to a hash relating menu values to another
  6255. hash with the attribute's name as the key and the
  6256. attribute's value as the value.
  6257.  
  6258. =back
  6259.  
  6260. When the form is processed, the selected value of the popup menu can
  6261. be retrieved using:
  6262.  
  6263.       $popup_menu_value = param('menu_name');
  6264.  
  6265. =head2 CREATING AN OPTION GROUP
  6266.  
  6267. Named parameter style
  6268.  
  6269.   print popup_menu(-name=>'menu_name',
  6270.                   -values=>[qw/eenie meenie minie/,
  6271.                             optgroup(-name=>'optgroup_name',
  6272.                                              -values => ['moe','catch'],
  6273.                                              -attributes=>{'catch'=>{'class'=>'red'}})],
  6274.                   -labels=>{'eenie'=>'one',
  6275.                             'meenie'=>'two',
  6276.                             'minie'=>'three'},
  6277.                   -default=>'meenie');
  6278.  
  6279.   Old style
  6280.   print popup_menu('menu_name',
  6281.                   ['eenie','meenie','minie',
  6282.                    optgroup('optgroup_name', ['moe', 'catch'],
  6283.                                    {'catch'=>{'class'=>'red'}})],'meenie',
  6284.                   {'eenie'=>'one','meenie'=>'two','minie'=>'three'});
  6285.  
  6286. optgroup() creates an option group within a popup menu.
  6287.  
  6288. =over 4
  6289.  
  6290. =item 1.
  6291.  
  6292. The required first argument (B<-name>) is the label attribute of the
  6293. optgroup and is B<not> inserted in the parameter list of the query.
  6294.  
  6295. =item 2.
  6296.  
  6297. The required second argument (B<-values>)  is an array reference
  6298. containing the list of menu items in the menu.  You can pass the
  6299. method an anonymous array, as shown in the example, or a reference
  6300. to a named array, such as \@foo.  If you pass a HASH reference,
  6301. the keys will be used for the menu values, and the values will be
  6302. used for the menu labels (see -labels below).
  6303.  
  6304. =item 3.
  6305.  
  6306. The optional third parameter (B<-labels>) allows you to pass a reference
  6307. to a hash containing user-visible labels for one or more
  6308. of the menu items.  You can use this when you want the user to see one
  6309. menu string, but have the browser return your program a different one.
  6310. If you don't specify this, the value string will be used instead
  6311. ("eenie", "meenie" and "minie" in this example).  This is equivalent
  6312. to using a hash reference for the -values parameter.
  6313.  
  6314. =item 4.
  6315.  
  6316. An optional fourth parameter (B<-labeled>) can be set to a true value
  6317. and indicates that the values should be used as the label attribute
  6318. for each option element within the optgroup.
  6319.  
  6320. =item 5.
  6321.  
  6322. An optional fifth parameter (-novals) can be set to a true value and
  6323. indicates to suppress the val attribute in each option element within
  6324. the optgroup.
  6325.  
  6326. See the discussion on optgroup at W3C
  6327. (http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTGROUP)
  6328. for details.
  6329.  
  6330. =item 6.
  6331.  
  6332. An optional sixth parameter (-attributes) is provided to assign
  6333. any of the common HTML attributes to an individual menu item. It's
  6334. a pointer to a hash relating menu values to another
  6335. hash with the attribute's name as the key and the
  6336. attribute's value as the value.
  6337.  
  6338. =back
  6339.  
  6340. =head2 CREATING A SCROLLING LIST
  6341.  
  6342.    print scrolling_list('list_name',
  6343.                 ['eenie','meenie','minie','moe'],
  6344.         ['eenie','moe'],5,'true',{'moe'=>{'class'=>'red'}});
  6345.       -or-
  6346.  
  6347.    print scrolling_list('list_name',
  6348.                 ['eenie','meenie','minie','moe'],
  6349.                 ['eenie','moe'],5,'true',
  6350.         \%labels,%attributes);
  6351.  
  6352.     -or-
  6353.  
  6354.    print scrolling_list(-name=>'list_name',
  6355.                 -values=>['eenie','meenie','minie','moe'],
  6356.                 -default=>['eenie','moe'],
  6357.                 -size=>5,
  6358.                 -multiple=>'true',
  6359.         -labels=>\%labels,
  6360.         -attributes=>\%attributes);
  6361.  
  6362. scrolling_list() creates a scrolling list.  
  6363.  
  6364. =over 4
  6365.  
  6366. =item B<Parameters:>
  6367.  
  6368. =item 1.
  6369.  
  6370. The first and second arguments are the list name (-name) and values
  6371. (-values).  As in the popup menu, the second argument should be an
  6372. array reference.
  6373.  
  6374. =item 2.
  6375.  
  6376. The optional third argument (-default) can be either a reference to a
  6377. list containing the values to be selected by default, or can be a
  6378. single value to select.  If this argument is missing or undefined,
  6379. then nothing is selected when the list first appears.  In the named
  6380. parameter version, you can use the synonym "-defaults" for this
  6381. parameter.
  6382.  
  6383. =item 3.
  6384.  
  6385. The optional fourth argument is the size of the list (-size).
  6386.  
  6387. =item 4.
  6388.  
  6389. The optional fifth argument can be set to true to allow multiple
  6390. simultaneous selections (-multiple).  Otherwise only one selection
  6391. will be allowed at a time.
  6392.  
  6393. =item 5.
  6394.  
  6395. The optional sixth argument is a pointer to a hash
  6396. containing long user-visible labels for the list items (-labels).
  6397. If not provided, the values will be displayed.
  6398.  
  6399. =item 6.
  6400.  
  6401. The optional sixth parameter (-attributes) is provided to assign
  6402. any of the common HTML attributes to an individual menu item. It's
  6403. a pointer to a hash relating menu values to another
  6404. hash with the attribute's name as the key and the
  6405. attribute's value as the value.
  6406.  
  6407. When this form is processed, all selected list items will be returned as
  6408. a list under the parameter name 'list_name'.  The values of the
  6409. selected items can be retrieved with:
  6410.  
  6411.       @selected = param('list_name');
  6412.  
  6413. =back
  6414.  
  6415. =head2 CREATING A GROUP OF RELATED CHECKBOXES
  6416.  
  6417.    print checkbox_group(-name=>'group_name',
  6418.                 -values=>['eenie','meenie','minie','moe'],
  6419.                 -default=>['eenie','moe'],
  6420.                 -linebreak=>'true',
  6421.                                 -disabled => ['moe'],
  6422.         -labels=>\%labels,
  6423.         -attributes=>\%attributes);
  6424.  
  6425.    print checkbox_group('group_name',
  6426.                 ['eenie','meenie','minie','moe'],
  6427.         ['eenie','moe'],'true',\%labels,
  6428.         {'moe'=>{'class'=>'red'}});
  6429.  
  6430.    HTML3-COMPATIBLE BROWSERS ONLY:
  6431.  
  6432.    print checkbox_group(-name=>'group_name',
  6433.                 -values=>['eenie','meenie','minie','moe'],
  6434.                 -rows=2,-columns=>2);
  6435.  
  6436.  
  6437. checkbox_group() creates a list of checkboxes that are related
  6438. by the same name.
  6439.  
  6440. =over 4
  6441.  
  6442. =item B<Parameters:>
  6443.  
  6444. =item 1.
  6445.  
  6446. The first and second arguments are the checkbox name and values,
  6447. respectively (-name and -values).  As in the popup menu, the second
  6448. argument should be an array reference.  These values are used for the
  6449. user-readable labels printed next to the checkboxes as well as for the
  6450. values passed to your script in the query string.
  6451.  
  6452. =item 2.
  6453.  
  6454. The optional third argument (-default) can be either a reference to a
  6455. list containing the values to be checked by default, or can be a
  6456. single value to checked.  If this argument is missing or undefined,
  6457. then nothing is selected when the list first appears.
  6458.  
  6459. =item 3.
  6460.  
  6461. The optional fourth argument (-linebreak) can be set to true to place
  6462. line breaks between the checkboxes so that they appear as a vertical
  6463. list.  Otherwise, they will be strung together on a horizontal line.
  6464.  
  6465. =back
  6466.  
  6467.  
  6468. The optional B<-labels> argument is a pointer to a hash
  6469. relating the checkbox values to the user-visible labels that will be
  6470. printed next to them.  If not provided, the values will be used as the
  6471. default.
  6472.  
  6473.  
  6474. The optional parameters B<-rows>, and B<-columns> cause
  6475. checkbox_group() to return an HTML3 compatible table containing the
  6476. checkbox group formatted with the specified number of rows and
  6477. columns.  You can provide just the -columns parameter if you wish;
  6478. checkbox_group will calculate the correct number of rows for you.
  6479.  
  6480. The option B<-disabled> takes an array of checkbox values and disables
  6481. them by greying them out (this may not be supported by all browsers).
  6482.  
  6483. The optional B<-attributes> argument is provided to assign any of the
  6484. common HTML attributes to an individual menu item. It's a pointer to
  6485. a hash relating menu values to another hash
  6486. with the attribute's name as the key and the attribute's value as the
  6487. value.
  6488.  
  6489. The optional B<-tabindex> argument can be used to control the order in which
  6490. radio buttons receive focus when the user presses the tab button.  If
  6491. passed a scalar numeric value, the first element in the group will
  6492. receive this tab index and subsequent elements will be incremented by
  6493. one.  If given a reference to an array of radio button values, then
  6494. the indexes will be jiggered so that the order specified in the array
  6495. will correspond to the tab order.  You can also pass a reference to a
  6496. hash in which the hash keys are the radio button values and the values
  6497. are the tab indexes of each button.  Examples:
  6498.  
  6499.   -tabindex => 100    #  this group starts at index 100 and counts up
  6500.   -tabindex => ['moe','minie','eenie','meenie']  # tab in this order
  6501.   -tabindex => {meenie=>100,moe=>101,minie=>102,eenie=>200} # tab in this order
  6502.  
  6503. The optional B<-labelattributes> argument will contain attributes
  6504. attached to the <label> element that surrounds each button.
  6505.  
  6506. When the form is processed, all checked boxes will be returned as
  6507. a list under the parameter name 'group_name'.  The values of the
  6508. "on" checkboxes can be retrieved with:
  6509.  
  6510.       @turned_on = param('group_name');
  6511.  
  6512. The value returned by checkbox_group() is actually an array of button
  6513. elements.  You can capture them and use them within tables, lists,
  6514. or in other creative ways:
  6515.  
  6516.     @h = checkbox_group(-name=>'group_name',-values=>\@values);
  6517.     &use_in_creative_way(@h);
  6518.  
  6519. =head2 CREATING A STANDALONE CHECKBOX
  6520.  
  6521.     print checkbox(-name=>'checkbox_name',
  6522.                -checked=>1,
  6523.                -value=>'ON',
  6524.                -label=>'CLICK ME');
  6525.  
  6526.     -or-
  6527.  
  6528.     print checkbox('checkbox_name','checked','ON','CLICK ME');
  6529.  
  6530. checkbox() is used to create an isolated checkbox that isn't logically
  6531. related to any others.
  6532.  
  6533. =over 4
  6534.  
  6535. =item B<Parameters:>
  6536.  
  6537. =item 1.
  6538.  
  6539. The first parameter is the required name for the checkbox (-name).  It
  6540. will also be used for the user-readable label printed next to the
  6541. checkbox.
  6542.  
  6543. =item 2.
  6544.  
  6545. The optional second parameter (-checked) specifies that the checkbox
  6546. is turned on by default.  Synonyms are -selected and -on.
  6547.  
  6548. =item 3.
  6549.  
  6550. The optional third parameter (-value) specifies the value of the
  6551. checkbox when it is checked.  If not provided, the word "on" is
  6552. assumed.
  6553.  
  6554. =item 4.
  6555.  
  6556. The optional fourth parameter (-label) is the user-readable label to
  6557. be attached to the checkbox.  If not provided, the checkbox name is
  6558. used.
  6559.  
  6560. =back
  6561.  
  6562. The value of the checkbox can be retrieved using:
  6563.  
  6564.     $turned_on = param('checkbox_name');
  6565.  
  6566. =head2 CREATING A RADIO BUTTON GROUP
  6567.  
  6568.    print radio_group(-name=>'group_name',
  6569.                  -values=>['eenie','meenie','minie'],
  6570.                  -default=>'meenie',
  6571.                  -linebreak=>'true',
  6572.            -labels=>\%labels,
  6573.            -attributes=>\%attributes);
  6574.  
  6575.     -or-
  6576.  
  6577.    print radio_group('group_name',['eenie','meenie','minie'],
  6578.             'meenie','true',\%labels,\%attributes);
  6579.  
  6580.  
  6581.    HTML3-COMPATIBLE BROWSERS ONLY:
  6582.  
  6583.    print radio_group(-name=>'group_name',
  6584.                  -values=>['eenie','meenie','minie','moe'],
  6585.                  -rows=2,-columns=>2);
  6586.  
  6587. radio_group() creates a set of logically-related radio buttons
  6588. (turning one member of the group on turns the others off)
  6589.  
  6590. =over 4
  6591.  
  6592. =item B<Parameters:>
  6593.  
  6594. =item 1.
  6595.  
  6596. The first argument is the name of the group and is required (-name).
  6597.  
  6598. =item 2.
  6599.  
  6600. The second argument (-values) is the list of values for the radio
  6601. buttons.  The values and the labels that appear on the page are
  6602. identical.  Pass an array I<reference> in the second argument, either
  6603. using an anonymous array, as shown, or by referencing a named array as
  6604. in "\@foo".
  6605.  
  6606. =item 3.
  6607.  
  6608. The optional third parameter (-default) is the name of the default
  6609. button to turn on. If not specified, the first item will be the
  6610. default.  You can provide a nonexistent button name, such as "-" to
  6611. start up with no buttons selected.
  6612.  
  6613. =item 4.
  6614.  
  6615. The optional fourth parameter (-linebreak) can be set to 'true' to put
  6616. line breaks between the buttons, creating a vertical list.
  6617.  
  6618. =item 5.
  6619.  
  6620. The optional fifth parameter (-labels) is a pointer to an associative
  6621. array relating the radio button values to user-visible labels to be
  6622. used in the display.  If not provided, the values themselves are
  6623. displayed.
  6624.  
  6625. =back
  6626.  
  6627.  
  6628. All modern browsers can take advantage of the optional parameters
  6629. B<-rows>, and B<-columns>.  These parameters cause radio_group() to
  6630. return an HTML3 compatible table containing the radio group formatted
  6631. with the specified number of rows and columns.  You can provide just
  6632. the -columns parameter if you wish; radio_group will calculate the
  6633. correct number of rows for you.
  6634.  
  6635. To include row and column headings in the returned table, you
  6636. can use the B<-rowheaders> and B<-colheaders> parameters.  Both
  6637. of these accept a pointer to an array of headings to use.
  6638. The headings are just decorative.  They don't reorganize the
  6639. interpretation of the radio buttons -- they're still a single named
  6640. unit.
  6641.  
  6642. The optional B<-tabindex> argument can be used to control the order in which
  6643. radio buttons receive focus when the user presses the tab button.  If
  6644. passed a scalar numeric value, the first element in the group will
  6645. receive this tab index and subsequent elements will be incremented by
  6646. one.  If given a reference to an array of radio button values, then
  6647. the indexes will be jiggered so that the order specified in the array
  6648. will correspond to the tab order.  You can also pass a reference to a
  6649. hash in which the hash keys are the radio button values and the values
  6650. are the tab indexes of each button.  Examples:
  6651.  
  6652.   -tabindex => 100    #  this group starts at index 100 and counts up
  6653.   -tabindex => ['moe','minie','eenie','meenie']  # tab in this order
  6654.   -tabindex => {meenie=>100,moe=>101,minie=>102,eenie=>200} # tab in this order
  6655.  
  6656.  
  6657. The optional B<-attributes> argument is provided to assign any of the
  6658. common HTML attributes to an individual menu item. It's a pointer to
  6659. a hash relating menu values to another hash
  6660. with the attribute's name as the key and the attribute's value as the
  6661. value.
  6662.  
  6663. The optional B<-labelattributes> argument will contain attributes
  6664. attached to the <label> element that surrounds each button.
  6665.  
  6666. When the form is processed, the selected radio button can
  6667. be retrieved using:
  6668.  
  6669.       $which_radio_button = param('group_name');
  6670.  
  6671. The value returned by radio_group() is actually an array of button
  6672. elements.  You can capture them and use them within tables, lists,
  6673. or in other creative ways:
  6674.  
  6675.     @h = radio_group(-name=>'group_name',-values=>\@values);
  6676.     &use_in_creative_way(@h);
  6677.  
  6678. =head2 CREATING A SUBMIT BUTTON 
  6679.  
  6680.    print submit(-name=>'button_name',
  6681.             -value=>'value');
  6682.  
  6683.     -or-
  6684.  
  6685.    print submit('button_name','value');
  6686.  
  6687. submit() will create the query submission button.  Every form
  6688. should have one of these.
  6689.  
  6690. =over 4
  6691.  
  6692. =item B<Parameters:>
  6693.  
  6694. =item 1.
  6695.  
  6696. The first argument (-name) is optional.  You can give the button a
  6697. name if you have several submission buttons in your form and you want
  6698. to distinguish between them.  
  6699.  
  6700. =item 2.
  6701.  
  6702. The second argument (-value) is also optional.  This gives the button
  6703. a value that will be passed to your script in the query string. The
  6704. name will also be used as the user-visible label.
  6705.  
  6706. =item 3.
  6707.  
  6708. You can use -label as an alias for -value.  I always get confused
  6709. about which of -name and -value changes the user-visible label on the
  6710. button.
  6711.  
  6712. =back
  6713.  
  6714. You can figure out which button was pressed by using different
  6715. values for each one:
  6716.  
  6717.      $which_one = param('button_name');
  6718.  
  6719. =head2 CREATING A RESET BUTTON
  6720.  
  6721.    print reset
  6722.  
  6723. reset() creates the "reset" button.  Note that it restores the
  6724. form to its value from the last time the script was called, 
  6725. NOT necessarily to the defaults.
  6726.  
  6727. Note that this conflicts with the Perl reset() built-in.  Use
  6728. CORE::reset() to get the original reset function.
  6729.  
  6730. =head2 CREATING A DEFAULT BUTTON
  6731.  
  6732.    print defaults('button_label')
  6733.  
  6734. defaults() creates a button that, when invoked, will cause the
  6735. form to be completely reset to its defaults, wiping out all the
  6736. changes the user ever made.
  6737.  
  6738. =head2 CREATING A HIDDEN FIELD
  6739.  
  6740.     print hidden(-name=>'hidden_name',
  6741.                  -default=>['value1','value2'...]);
  6742.  
  6743.         -or-
  6744.  
  6745.     print hidden('hidden_name','value1','value2'...);
  6746.  
  6747. hidden() produces a text field that can't be seen by the user.  It
  6748. is useful for passing state variable information from one invocation
  6749. of the script to the next.
  6750.  
  6751. =over 4
  6752.  
  6753. =item B<Parameters:>
  6754.  
  6755. =item 1.
  6756.  
  6757. The first argument is required and specifies the name of this
  6758. field (-name).
  6759.  
  6760. =item 2.  
  6761.  
  6762. The second argument is also required and specifies its value
  6763. (-default).  In the named parameter style of calling, you can provide
  6764. a single value here or a reference to a whole list
  6765.  
  6766. =back
  6767.  
  6768. Fetch the value of a hidden field this way:
  6769.  
  6770.      $hidden_value = param('hidden_name');
  6771.  
  6772. Note, that just like all the other form elements, the value of a
  6773. hidden field is "sticky".  If you want to replace a hidden field with
  6774. some other values after the script has been called once you'll have to
  6775. do it manually:
  6776.  
  6777.      param('hidden_name','new','values','here');
  6778.  
  6779. =head2 CREATING A CLICKABLE IMAGE BUTTON
  6780.  
  6781.      print image_button(-name=>'button_name',
  6782.                 -src=>'/source/URL',
  6783.                 -align=>'MIDDLE');      
  6784.  
  6785.     -or-
  6786.  
  6787.      print image_button('button_name','/source/URL','MIDDLE');
  6788.  
  6789. image_button() produces a clickable image.  When it's clicked on the
  6790. position of the click is returned to your script as "button_name.x"
  6791. and "button_name.y", where "button_name" is the name you've assigned
  6792. to it.
  6793.  
  6794. =over 4
  6795.  
  6796. =item B<Parameters:>
  6797.  
  6798. =item 1.
  6799.  
  6800. The first argument (-name) is required and specifies the name of this
  6801. field.
  6802.  
  6803. =item 2.
  6804.  
  6805. The second argument (-src) is also required and specifies the URL
  6806.  
  6807. =item 3.
  6808. The third option (-align, optional) is an alignment type, and may be
  6809. TOP, BOTTOM or MIDDLE
  6810.  
  6811. =back
  6812.  
  6813. Fetch the value of the button this way:
  6814.      $x = param('button_name.x');
  6815.      $y = param('button_name.y');
  6816.  
  6817. =head2 CREATING A JAVASCRIPT ACTION BUTTON
  6818.  
  6819.      print button(-name=>'button_name',
  6820.               -value=>'user visible label',
  6821.               -onClick=>"do_something()");
  6822.  
  6823.     -or-
  6824.  
  6825.      print button('button_name',"do_something()");
  6826.  
  6827. button() produces a button that is compatible with Netscape 2.0's
  6828. JavaScript.  When it's pressed the fragment of JavaScript code
  6829. pointed to by the B<-onClick> parameter will be executed.
  6830.  
  6831. =head1 HTTP COOKIES
  6832.  
  6833. Browsers support a so-called "cookie" designed to help maintain state
  6834. within a browser session.  CGI.pm has several methods that support
  6835. cookies.
  6836.  
  6837. A cookie is a name=value pair much like the named parameters in a CGI
  6838. query string.  CGI scripts create one or more cookies and send
  6839. them to the browser in the HTTP header.  The browser maintains a list
  6840. of cookies that belong to a particular Web server, and returns them
  6841. to the CGI script during subsequent interactions.
  6842.  
  6843. In addition to the required name=value pair, each cookie has several
  6844. optional attributes:
  6845.  
  6846. =over 4
  6847.  
  6848. =item 1. an expiration time
  6849.  
  6850. This is a time/date string (in a special GMT format) that indicates
  6851. when a cookie expires.  The cookie will be saved and returned to your
  6852. script until this expiration date is reached if the user exits
  6853. the browser and restarts it.  If an expiration date isn't specified, the cookie
  6854. will remain active until the user quits the browser.
  6855.  
  6856. =item 2. a domain
  6857.  
  6858. This is a partial or complete domain name for which the cookie is 
  6859. valid.  The browser will return the cookie to any host that matches
  6860. the partial domain name.  For example, if you specify a domain name
  6861. of ".capricorn.com", then the browser will return the cookie to
  6862. Web servers running on any of the machines "www.capricorn.com", 
  6863. "www2.capricorn.com", "feckless.capricorn.com", etc.  Domain names
  6864. must contain at least two periods to prevent attempts to match
  6865. on top level domains like ".edu".  If no domain is specified, then
  6866. the browser will only return the cookie to servers on the host the
  6867. cookie originated from.
  6868.  
  6869. =item 3. a path
  6870.  
  6871. If you provide a cookie path attribute, the browser will check it
  6872. against your script's URL before returning the cookie.  For example,
  6873. if you specify the path "/cgi-bin", then the cookie will be returned
  6874. to each of the scripts "/cgi-bin/tally.pl", "/cgi-bin/order.pl",
  6875. and "/cgi-bin/customer_service/complain.pl", but not to the script
  6876. "/cgi-private/site_admin.pl".  By default, path is set to "/", which
  6877. causes the cookie to be sent to any CGI script on your site.
  6878.  
  6879. =item 4. a "secure" flag
  6880.  
  6881. If the "secure" attribute is set, the cookie will only be sent to your
  6882. script if the CGI request is occurring on a secure channel, such as SSL.
  6883.  
  6884. =back
  6885.  
  6886. The interface to HTTP cookies is the B<cookie()> method:
  6887.  
  6888.     $cookie = cookie(-name=>'sessionID',
  6889.                  -value=>'xyzzy',
  6890.                  -expires=>'+1h',
  6891.                  -path=>'/cgi-bin/database',
  6892.                  -domain=>'.capricorn.org',
  6893.                  -secure=>1);
  6894.     print header(-cookie=>$cookie);
  6895.  
  6896. B<cookie()> creates a new cookie.  Its parameters include:
  6897.  
  6898. =over 4
  6899.  
  6900. =item B<-name>
  6901.  
  6902. The name of the cookie (required).  This can be any string at all.
  6903. Although browsers limit their cookie names to non-whitespace
  6904. alphanumeric characters, CGI.pm removes this restriction by escaping
  6905. and unescaping cookies behind the scenes.
  6906.  
  6907. =item B<-value>
  6908.  
  6909. The value of the cookie.  This can be any scalar value,
  6910. array reference, or even hash reference.  For example,
  6911. you can store an entire hash into a cookie this way:
  6912.  
  6913.     $cookie=cookie(-name=>'family information',
  6914.                    -value=>\%childrens_ages);
  6915.  
  6916. =item B<-path>
  6917.  
  6918. The optional partial path for which this cookie will be valid, as described
  6919. above.
  6920.  
  6921. =item B<-domain>
  6922.  
  6923. The optional partial domain for which this cookie will be valid, as described
  6924. above.
  6925.  
  6926. =item B<-expires>
  6927.  
  6928. The optional expiration date for this cookie.  The format is as described 
  6929. in the section on the B<header()> method:
  6930.  
  6931.     "+1h"  one hour from now
  6932.  
  6933. =item B<-secure>
  6934.  
  6935. If set to true, this cookie will only be used within a secure
  6936. SSL session.
  6937.  
  6938. =back
  6939.  
  6940. The cookie created by cookie() must be incorporated into the HTTP
  6941. header within the string returned by the header() method:
  6942.  
  6943.         use CGI ':standard';
  6944.     print header(-cookie=>$my_cookie);
  6945.  
  6946. To create multiple cookies, give header() an array reference:
  6947.  
  6948.     $cookie1 = cookie(-name=>'riddle_name',
  6949.                   -value=>"The Sphynx's Question");
  6950.     $cookie2 = cookie(-name=>'answers',
  6951.                   -value=>\%answers);
  6952.     print header(-cookie=>[$cookie1,$cookie2]);
  6953.  
  6954. To retrieve a cookie, request it by name by calling cookie() method
  6955. without the B<-value> parameter. This example uses the object-oriented
  6956. form:
  6957.  
  6958.     use CGI;
  6959.     $query = new CGI;
  6960.     $riddle = $query->cookie('riddle_name');
  6961.         %answers = $query->cookie('answers');
  6962.  
  6963. Cookies created with a single scalar value, such as the "riddle_name"
  6964. cookie, will be returned in that form.  Cookies with array and hash
  6965. values can also be retrieved.
  6966.  
  6967. The cookie and CGI namespaces are separate.  If you have a parameter
  6968. named 'answers' and a cookie named 'answers', the values retrieved by
  6969. param() and cookie() are independent of each other.  However, it's
  6970. simple to turn a CGI parameter into a cookie, and vice-versa:
  6971.  
  6972.    # turn a CGI parameter into a cookie
  6973.    $c=cookie(-name=>'answers',-value=>[param('answers')]);
  6974.    # vice-versa
  6975.    param(-name=>'answers',-value=>[cookie('answers')]);
  6976.  
  6977. If you call cookie() without any parameters, it will return a list of
  6978. the names of all cookies passed to your script:
  6979.  
  6980.   @cookies = cookie();
  6981.  
  6982. See the B<cookie.cgi> example script for some ideas on how to use
  6983. cookies effectively.
  6984.  
  6985. =head1 WORKING WITH FRAMES
  6986.  
  6987. It's possible for CGI.pm scripts to write into several browser panels
  6988. and windows using the HTML 4 frame mechanism.  There are three
  6989. techniques for defining new frames programmatically:
  6990.  
  6991. =over 4
  6992.  
  6993. =item 1. Create a <Frameset> document
  6994.  
  6995. After writing out the HTTP header, instead of creating a standard
  6996. HTML document using the start_html() call, create a <frameset> 
  6997. document that defines the frames on the page.  Specify your script(s)
  6998. (with appropriate parameters) as the SRC for each of the frames.
  6999.  
  7000. There is no specific support for creating <frameset> sections 
  7001. in CGI.pm, but the HTML is very simple to write.  See the frame
  7002. documentation in Netscape's home pages for details 
  7003.  
  7004.   http://wp.netscape.com/assist/net_sites/frames.html
  7005.  
  7006. =item 2. Specify the destination for the document in the HTTP header
  7007.  
  7008. You may provide a B<-target> parameter to the header() method:
  7009.  
  7010.     print header(-target=>'ResultsWindow');
  7011.  
  7012. This will tell the browser to load the output of your script into the
  7013. frame named "ResultsWindow".  If a frame of that name doesn't already
  7014. exist, the browser will pop up a new window and load your script's
  7015. document into that.  There are a number of magic names that you can
  7016. use for targets.  See the frame documents on Netscape's home pages for
  7017. details.
  7018.  
  7019. =item 3. Specify the destination for the document in the <form> tag
  7020.  
  7021. You can specify the frame to load in the FORM tag itself.  With
  7022. CGI.pm it looks like this:
  7023.  
  7024.     print start_form(-target=>'ResultsWindow');
  7025.  
  7026. When your script is reinvoked by the form, its output will be loaded
  7027. into the frame named "ResultsWindow".  If one doesn't already exist
  7028. a new window will be created.
  7029.  
  7030. =back
  7031.  
  7032. The script "frameset.cgi" in the examples directory shows one way to
  7033. create pages in which the fill-out form and the response live in
  7034. side-by-side frames.
  7035.  
  7036. =head1 SUPPORT FOR JAVASCRIPT
  7037.  
  7038. The usual way to use JavaScript is to define a set of functions in a
  7039. <SCRIPT> block inside the HTML header and then to register event
  7040. handlers in the various elements of the page. Events include such
  7041. things as the mouse passing over a form element, a button being
  7042. clicked, the contents of a text field changing, or a form being
  7043. submitted. When an event occurs that involves an element that has
  7044. registered an event handler, its associated JavaScript code gets
  7045. called.
  7046.  
  7047. The elements that can register event handlers include the <BODY> of an
  7048. HTML document, hypertext links, all the various elements of a fill-out
  7049. form, and the form itself. There are a large number of events, and
  7050. each applies only to the elements for which it is relevant. Here is a
  7051. partial list:
  7052.  
  7053. =over 4
  7054.  
  7055. =item B<onLoad>
  7056.  
  7057. The browser is loading the current document. Valid in:
  7058.  
  7059.      + The HTML <BODY> section only.
  7060.  
  7061. =item B<onUnload>
  7062.  
  7063. The browser is closing the current page or frame. Valid for:
  7064.  
  7065.      + The HTML <BODY> section only.
  7066.  
  7067. =item B<onSubmit>
  7068.  
  7069. The user has pressed the submit button of a form. This event happens
  7070. just before the form is submitted, and your function can return a
  7071. value of false in order to abort the submission.  Valid for:
  7072.  
  7073.      + Forms only.
  7074.  
  7075. =item B<onClick>
  7076.  
  7077. The mouse has clicked on an item in a fill-out form. Valid for:
  7078.  
  7079.      + Buttons (including submit, reset, and image buttons)
  7080.      + Checkboxes
  7081.      + Radio buttons
  7082.  
  7083. =item B<onChange>
  7084.  
  7085. The user has changed the contents of a field. Valid for:
  7086.  
  7087.      + Text fields
  7088.      + Text areas
  7089.      + Password fields
  7090.      + File fields
  7091.      + Popup Menus
  7092.      + Scrolling lists
  7093.  
  7094. =item B<onFocus>
  7095.  
  7096. The user has selected a field to work with. Valid for:
  7097.  
  7098.      + Text fields
  7099.      + Text areas
  7100.      + Password fields
  7101.      + File fields
  7102.      + Popup Menus
  7103.      + Scrolling lists
  7104.  
  7105. =item B<onBlur>
  7106.  
  7107. The user has deselected a field (gone to work somewhere else).  Valid
  7108. for:
  7109.  
  7110.      + Text fields
  7111.      + Text areas
  7112.      + Password fields
  7113.      + File fields
  7114.      + Popup Menus
  7115.      + Scrolling lists
  7116.  
  7117. =item B<onSelect>
  7118.  
  7119. The user has changed the part of a text field that is selected.  Valid
  7120. for:
  7121.  
  7122.      + Text fields
  7123.      + Text areas
  7124.      + Password fields
  7125.      + File fields
  7126.  
  7127. =item B<onMouseOver>
  7128.  
  7129. The mouse has moved over an element.
  7130.  
  7131.      + Text fields
  7132.      + Text areas
  7133.      + Password fields
  7134.      + File fields
  7135.      + Popup Menus
  7136.      + Scrolling lists
  7137.  
  7138. =item B<onMouseOut>
  7139.  
  7140. The mouse has moved off an element.
  7141.  
  7142.      + Text fields
  7143.      + Text areas
  7144.      + Password fields
  7145.      + File fields
  7146.      + Popup Menus
  7147.      + Scrolling lists
  7148.  
  7149. =back
  7150.  
  7151. In order to register a JavaScript event handler with an HTML element,
  7152. just use the event name as a parameter when you call the corresponding
  7153. CGI method. For example, to have your validateAge() JavaScript code
  7154. executed every time the textfield named "age" changes, generate the
  7155. field like this: 
  7156.  
  7157.  print textfield(-name=>'age',-onChange=>"validateAge(this)");
  7158.  
  7159. This example assumes that you've already declared the validateAge()
  7160. function by incorporating it into a <SCRIPT> block. The CGI.pm
  7161. start_html() method provides a convenient way to create this section.
  7162.  
  7163. Similarly, you can create a form that checks itself over for
  7164. consistency and alerts the user if some essential value is missing by
  7165. creating it this way: 
  7166.   print startform(-onSubmit=>"validateMe(this)");
  7167.  
  7168. See the javascript.cgi script for a demonstration of how this all
  7169. works.
  7170.  
  7171.  
  7172. =head1 LIMITED SUPPORT FOR CASCADING STYLE SHEETS
  7173.  
  7174. CGI.pm has limited support for HTML3's cascading style sheets (css).
  7175. To incorporate a stylesheet into your document, pass the
  7176. start_html() method a B<-style> parameter.  The value of this
  7177. parameter may be a scalar, in which case it is treated as the source
  7178. URL for the stylesheet, or it may be a hash reference.  In the latter
  7179. case you should provide the hash with one or more of B<-src> or
  7180. B<-code>.  B<-src> points to a URL where an externally-defined
  7181. stylesheet can be found.  B<-code> points to a scalar value to be
  7182. incorporated into a <style> section.  Style definitions in B<-code>
  7183. override similarly-named ones in B<-src>, hence the name "cascading."
  7184.  
  7185. You may also specify the type of the stylesheet by adding the optional
  7186. B<-type> parameter to the hash pointed to by B<-style>.  If not
  7187. specified, the style defaults to 'text/css'.
  7188.  
  7189. To refer to a style within the body of your document, add the
  7190. B<-class> parameter to any HTML element:
  7191.  
  7192.     print h1({-class=>'Fancy'},'Welcome to the Party');
  7193.  
  7194. Or define styles on the fly with the B<-style> parameter:
  7195.  
  7196.     print h1({-style=>'Color: red;'},'Welcome to Hell');
  7197.  
  7198. You may also use the new B<span()> element to apply a style to a
  7199. section of text:
  7200.  
  7201.     print span({-style=>'Color: red;'},
  7202.            h1('Welcome to Hell'),
  7203.            "Where did that handbasket get to?"
  7204.            );
  7205.  
  7206. Note that you must import the ":html3" definitions to have the
  7207. B<span()> method available.  Here's a quick and dirty example of using
  7208. CSS's.  See the CSS specification at
  7209. http://www.w3.org/pub/WWW/TR/Wd-css-1.html for more information.
  7210.  
  7211.     use CGI qw/:standard :html3/;
  7212.  
  7213.     #here's a stylesheet incorporated directly into the page
  7214.     $newStyle=<<END;
  7215.     <!-- 
  7216.     P.Tip {
  7217.     margin-right: 50pt;
  7218.     margin-left: 50pt;
  7219.         color: red;
  7220.     }
  7221.     P.Alert {
  7222.     font-size: 30pt;
  7223.         font-family: sans-serif;
  7224.       color: red;
  7225.     }
  7226.     -->
  7227.     END
  7228.     print header();
  7229.     print start_html( -title=>'CGI with Style',
  7230.               -style=>{-src=>'http://www.capricorn.com/style/st1.css',
  7231.                        -code=>$newStyle}
  7232.                  );
  7233.     print h1('CGI with Style'),
  7234.           p({-class=>'Tip'},
  7235.         "Better read the cascading style sheet spec before playing with this!"),
  7236.           span({-style=>'color: magenta'},
  7237.            "Look Mom, no hands!",
  7238.            p(),
  7239.            "Whooo wee!"
  7240.            );
  7241.     print end_html;
  7242.  
  7243. Pass an array reference to B<-code> or B<-src> in order to incorporate
  7244. multiple stylesheets into your document.
  7245.  
  7246. Should you wish to incorporate a verbatim stylesheet that includes
  7247. arbitrary formatting in the header, you may pass a -verbatim tag to
  7248. the -style hash, as follows:
  7249.  
  7250. print start_html (-style  =>  {-verbatim => '@import url("/server-common/css/'.$cssFile.'");',
  7251.                   -src    =>  '/server-common/css/core.css'});
  7252.  
  7253.  
  7254. This will generate an HTML header that contains this:
  7255.  
  7256.  <link rel="stylesheet" type="text/css"  href="/server-common/css/core.css">
  7257.    <style type="text/css">
  7258.    @import url("/server-common/css/main.css");
  7259.    </style>
  7260.  
  7261. Any additional arguments passed in the -style value will be
  7262. incorporated into the <link> tag.  For example:
  7263.  
  7264.  start_html(-style=>{-src=>['/styles/print.css','/styles/layout.css'],
  7265.               -media => 'all'});
  7266.  
  7267. This will give:
  7268.  
  7269.  <link rel="stylesheet" type="text/css" href="/styles/print.css" media="all"/>
  7270.  <link rel="stylesheet" type="text/css" href="/styles/layout.css" media="all"/>
  7271.  
  7272. <p>
  7273.  
  7274. To make more complicated <link> tags, use the Link() function
  7275. and pass it to start_html() in the -head argument, as in:
  7276.  
  7277.   @h = (Link({-rel=>'stylesheet',-type=>'text/css',-src=>'/ss/ss.css',-media=>'all'}),
  7278.         Link({-rel=>'stylesheet',-type=>'text/css',-src=>'/ss/fred.css',-media=>'paper'}));
  7279.   print start_html({-head=>\@h})
  7280.  
  7281. To create primary and  "alternate" stylesheet, use the B<-alternate> option:
  7282.  
  7283.  start_html(-style=>{-src=>[
  7284.                            {-src=>'/styles/print.css'},
  7285.                {-src=>'/styles/alt.css',-alternate=>1}
  7286.                            ]
  7287.             });
  7288.  
  7289. =head1 DEBUGGING
  7290.  
  7291. If you are running the script from the command line or in the perl
  7292. debugger, you can pass the script a list of keywords or
  7293. parameter=value pairs on the command line or from standard input (you
  7294. don't have to worry about tricking your script into reading from
  7295. environment variables).  You can pass keywords like this:
  7296.  
  7297.     your_script.pl keyword1 keyword2 keyword3
  7298.  
  7299. or this:
  7300.  
  7301.    your_script.pl keyword1+keyword2+keyword3
  7302.  
  7303. or this:
  7304.  
  7305.     your_script.pl name1=value1 name2=value2
  7306.  
  7307. or this:
  7308.  
  7309.     your_script.pl name1=value1&name2=value2
  7310.  
  7311. To turn off this feature, use the -no_debug pragma.
  7312.  
  7313. To test the POST method, you may enable full debugging with the -debug
  7314. pragma.  This will allow you to feed newline-delimited name=value
  7315. pairs to the script on standard input.
  7316.  
  7317. When debugging, you can use quotes and backslashes to escape 
  7318. characters in the familiar shell manner, letting you place
  7319. spaces and other funny characters in your parameter=value
  7320. pairs:
  7321.  
  7322.    your_script.pl "name1='I am a long value'" "name2=two\ words"
  7323.  
  7324. Finally, you can set the path info for the script by prefixing the first
  7325. name/value parameter with the path followed by a question mark (?):
  7326.  
  7327.     your_script.pl /your/path/here?name1=value1&name2=value2
  7328.  
  7329. =head2 DUMPING OUT ALL THE NAME/VALUE PAIRS
  7330.  
  7331. The Dump() method produces a string consisting of all the query's
  7332. name/value pairs formatted nicely as a nested list.  This is useful
  7333. for debugging purposes:
  7334.  
  7335.     print Dump
  7336.  
  7337.  
  7338. Produces something that looks like:
  7339.  
  7340.     <ul>
  7341.     <li>name1
  7342.     <ul>
  7343.     <li>value1
  7344.     <li>value2
  7345.     </ul>
  7346.     <li>name2
  7347.     <ul>
  7348.     <li>value1
  7349.     </ul>
  7350.     </ul>
  7351.  
  7352. As a shortcut, you can interpolate the entire CGI object into a string
  7353. and it will be replaced with the a nice HTML dump shown above:
  7354.  
  7355.     $query=new CGI;
  7356.     print "<h2>Current Values</h2> $query\n";
  7357.  
  7358. =head1 FETCHING ENVIRONMENT VARIABLES
  7359.  
  7360. Some of the more useful environment variables can be fetched
  7361. through this interface.  The methods are as follows:
  7362.  
  7363. =over 4
  7364.  
  7365. =item B<Accept()>
  7366.  
  7367. Return a list of MIME types that the remote browser accepts. If you
  7368. give this method a single argument corresponding to a MIME type, as in
  7369. Accept('text/html'), it will return a floating point value
  7370. corresponding to the browser's preference for this type from 0.0
  7371. (don't want) to 1.0.  Glob types (e.g. text/*) in the browser's accept
  7372. list are handled correctly.
  7373.  
  7374. Note that the capitalization changed between version 2.43 and 2.44 in
  7375. order to avoid conflict with Perl's accept() function.
  7376.  
  7377. =item B<raw_cookie()>
  7378.  
  7379. Returns the HTTP_COOKIE variable.  Cookies have a special format, and
  7380. this method call just returns the raw form (?cookie dough).  See
  7381. cookie() for ways of setting and retrieving cooked cookies.
  7382.  
  7383. Called with no parameters, raw_cookie() returns the packed cookie
  7384. structure.  You can separate it into individual cookies by splitting
  7385. on the character sequence "; ".  Called with the name of a cookie,
  7386. retrieves the B<unescaped> form of the cookie.  You can use the
  7387. regular cookie() method to get the names, or use the raw_fetch()
  7388. method from the CGI::Cookie module.
  7389.  
  7390. =item B<user_agent()>
  7391.  
  7392. Returns the HTTP_USER_AGENT variable.  If you give
  7393. this method a single argument, it will attempt to
  7394. pattern match on it, allowing you to do something
  7395. like user_agent(Mozilla);
  7396.  
  7397. =item B<path_info()>
  7398.  
  7399. Returns additional path information from the script URL.
  7400. E.G. fetching /cgi-bin/your_script/additional/stuff will result in
  7401. path_info() returning "/additional/stuff".
  7402.  
  7403. NOTE: The Microsoft Internet Information Server
  7404. is broken with respect to additional path information.  If
  7405. you use the Perl DLL library, the IIS server will attempt to
  7406. execute the additional path information as a Perl script.
  7407. If you use the ordinary file associations mapping, the
  7408. path information will be present in the environment, 
  7409. but incorrect.  The best thing to do is to avoid using additional
  7410. path information in CGI scripts destined for use with IIS.
  7411.  
  7412. =item B<path_translated()>
  7413.  
  7414. As per path_info() but returns the additional
  7415. path information translated into a physical path, e.g.
  7416. "/usr/local/etc/httpd/htdocs/additional/stuff".
  7417.  
  7418. The Microsoft IIS is broken with respect to the translated
  7419. path as well.
  7420.  
  7421. =item B<remote_host()>
  7422.  
  7423. Returns either the remote host name or IP address.
  7424. if the former is unavailable.
  7425.  
  7426. =item B<script_name()>
  7427. Return the script name as a partial URL, for self-refering
  7428. scripts.
  7429.  
  7430. =item B<referer()>
  7431.  
  7432. Return the URL of the page the browser was viewing
  7433. prior to fetching your script.  Not available for all
  7434. browsers.
  7435.  
  7436. =item B<auth_type ()>
  7437.  
  7438. Return the authorization/verification method in use for this
  7439. script, if any.
  7440.  
  7441. =item B<server_name ()>
  7442.  
  7443. Returns the name of the server, usually the machine's host
  7444. name.
  7445.  
  7446. =item B<virtual_host ()>
  7447.  
  7448. When using virtual hosts, returns the name of the host that
  7449. the browser attempted to contact
  7450.  
  7451. =item B<server_port ()>
  7452.  
  7453. Return the port that the server is listening on.
  7454.  
  7455. =item B<virtual_port ()>
  7456.  
  7457. Like server_port() except that it takes virtual hosts into account.
  7458. Use this when running with virtual hosts.
  7459.  
  7460. =item B<server_software ()>
  7461.  
  7462. Returns the server software and version number.
  7463.  
  7464. =item B<remote_user ()>
  7465.  
  7466. Return the authorization/verification name used for user
  7467. verification, if this script is protected.
  7468.  
  7469. =item B<user_name ()>
  7470.  
  7471. Attempt to obtain the remote user's name, using a variety of different
  7472. techniques.  This only works with older browsers such as Mosaic.
  7473. Newer browsers do not report the user name for privacy reasons!
  7474.  
  7475. =item B<request_method()>
  7476.  
  7477. Returns the method used to access your script, usually
  7478. one of 'POST', 'GET' or 'HEAD'.
  7479.  
  7480. =item B<content_type()>
  7481.  
  7482. Returns the content_type of data submitted in a POST, generally 
  7483. multipart/form-data or application/x-www-form-urlencoded
  7484.  
  7485. =item B<http()>
  7486.  
  7487. Called with no arguments returns the list of HTTP environment
  7488. variables, including such things as HTTP_USER_AGENT,
  7489. HTTP_ACCEPT_LANGUAGE, and HTTP_ACCEPT_CHARSET, corresponding to the
  7490. like-named HTTP header fields in the request.  Called with the name of
  7491. an HTTP header field, returns its value.  Capitalization and the use
  7492. of hyphens versus underscores are not significant.
  7493.  
  7494. For example, all three of these examples are equivalent:
  7495.  
  7496.    $requested_language = http('Accept-language');
  7497.    $requested_language = http('Accept_language');
  7498.    $requested_language = http('HTTP_ACCEPT_LANGUAGE');
  7499.  
  7500. =item B<https()>
  7501.  
  7502. The same as I<http()>, but operates on the HTTPS environment variables
  7503. present when the SSL protocol is in effect.  Can be used to determine
  7504. whether SSL is turned on.
  7505.  
  7506. =back
  7507.  
  7508. =head1 USING NPH SCRIPTS
  7509.  
  7510. NPH, or "no-parsed-header", scripts bypass the server completely by
  7511. sending the complete HTTP header directly to the browser.  This has
  7512. slight performance benefits, but is of most use for taking advantage
  7513. of HTTP extensions that are not directly supported by your server,
  7514. such as server push and PICS headers.
  7515.  
  7516. Servers use a variety of conventions for designating CGI scripts as
  7517. NPH.  Many Unix servers look at the beginning of the script's name for
  7518. the prefix "nph-".  The Macintosh WebSTAR server and Microsoft's
  7519. Internet Information Server, in contrast, try to decide whether a
  7520. program is an NPH script by examining the first line of script output.
  7521.  
  7522.  
  7523. CGI.pm supports NPH scripts with a special NPH mode.  When in this
  7524. mode, CGI.pm will output the necessary extra header information when
  7525. the header() and redirect() methods are
  7526. called.
  7527.  
  7528. The Microsoft Internet Information Server requires NPH mode.  As of
  7529. version 2.30, CGI.pm will automatically detect when the script is
  7530. running under IIS and put itself into this mode.  You do not need to
  7531. do this manually, although it won't hurt anything if you do.  However,
  7532. note that if you have applied Service Pack 6, much of the
  7533. functionality of NPH scripts, including the ability to redirect while
  7534. setting a cookie, B<do not work at all> on IIS without a special patch
  7535. from Microsoft.  See
  7536. http://support.microsoft.com/support/kb/articles/Q280/3/41.ASP:
  7537. Non-Parsed Headers Stripped From CGI Applications That Have nph-
  7538. Prefix in Name.
  7539.  
  7540. =over 4
  7541.  
  7542. =item In the B<use> statement 
  7543.  
  7544. Simply add the "-nph" pragmato the list of symbols to be imported into
  7545. your script:
  7546.  
  7547.       use CGI qw(:standard -nph)
  7548.  
  7549. =item By calling the B<nph()> method:
  7550.  
  7551. Call B<nph()> with a non-zero parameter at any point after using CGI.pm in your program.
  7552.  
  7553.       CGI->nph(1)
  7554.  
  7555. =item By using B<-nph> parameters
  7556.  
  7557. in the B<header()> and B<redirect()>  statements:
  7558.  
  7559.       print header(-nph=>1);
  7560.  
  7561. =back
  7562.  
  7563. =head1 Server Push
  7564.  
  7565. CGI.pm provides four simple functions for producing multipart
  7566. documents of the type needed to implement server push.  These
  7567. functions were graciously provided by Ed Jordan <ed@fidalgo.net>.  To
  7568. import these into your namespace, you must import the ":push" set.
  7569. You are also advised to put the script into NPH mode and to set $| to
  7570. 1 to avoid buffering problems.
  7571.  
  7572. Here is a simple script that demonstrates server push:
  7573.  
  7574.   #!/usr/local/bin/perl
  7575.   use CGI qw/:push -nph/;
  7576.   $| = 1;
  7577.   print multipart_init(-boundary=>'----here we go!');
  7578.   for (0 .. 4) {
  7579.       print multipart_start(-type=>'text/plain'),
  7580.             "The current time is ",scalar(localtime),"\n";
  7581.       if ($_ < 4) {
  7582.               print multipart_end;
  7583.       } else {
  7584.               print multipart_final;
  7585.       }
  7586.       sleep 1;
  7587.   }
  7588.  
  7589. This script initializes server push by calling B<multipart_init()>.
  7590. It then enters a loop in which it begins a new multipart section by
  7591. calling B<multipart_start()>, prints the current local time,
  7592. and ends a multipart section with B<multipart_end()>.  It then sleeps
  7593. a second, and begins again. On the final iteration, it ends the
  7594. multipart section with B<multipart_final()> rather than with
  7595. B<multipart_end()>.
  7596.  
  7597. =over 4
  7598.  
  7599. =item multipart_init()
  7600.  
  7601.   multipart_init(-boundary=>$boundary);
  7602.  
  7603. Initialize the multipart system.  The -boundary argument specifies
  7604. what MIME boundary string to use to separate parts of the document.
  7605. If not provided, CGI.pm chooses a reasonable boundary for you.
  7606.  
  7607. =item multipart_start()
  7608.  
  7609.   multipart_start(-type=>$type)
  7610.  
  7611. Start a new part of the multipart document using the specified MIME
  7612. type.  If not specified, text/html is assumed.
  7613.  
  7614. =item multipart_end()
  7615.  
  7616.   multipart_end()
  7617.  
  7618. End a part.  You must remember to call multipart_end() once for each
  7619. multipart_start(), except at the end of the last part of the multipart
  7620. document when multipart_final() should be called instead of multipart_end().
  7621.  
  7622. =item multipart_final()
  7623.  
  7624.   multipart_final()
  7625.  
  7626. End all parts.  You should call multipart_final() rather than
  7627. multipart_end() at the end of the last part of the multipart document.
  7628.  
  7629. =back
  7630.  
  7631. Users interested in server push applications should also have a look
  7632. at the CGI::Push module.
  7633.  
  7634. =head1 Avoiding Denial of Service Attacks
  7635.  
  7636. A potential problem with CGI.pm is that, by default, it attempts to
  7637. process form POSTings no matter how large they are.  A wily hacker
  7638. could attack your site by sending a CGI script a huge POST of many
  7639. megabytes.  CGI.pm will attempt to read the entire POST into a
  7640. variable, growing hugely in size until it runs out of memory.  While
  7641. the script attempts to allocate the memory the system may slow down
  7642. dramatically.  This is a form of denial of service attack.
  7643.  
  7644. Another possible attack is for the remote user to force CGI.pm to
  7645. accept a huge file upload.  CGI.pm will accept the upload and store it
  7646. in a temporary directory even if your script doesn't expect to receive
  7647. an uploaded file.  CGI.pm will delete the file automatically when it
  7648. terminates, but in the meantime the remote user may have filled up the
  7649. server's disk space, causing problems for other programs.
  7650.  
  7651. The best way to avoid denial of service attacks is to limit the amount
  7652. of memory, CPU time and disk space that CGI scripts can use.  Some Web
  7653. servers come with built-in facilities to accomplish this. In other
  7654. cases, you can use the shell I<limit> or I<ulimit>
  7655. commands to put ceilings on CGI resource usage.
  7656.  
  7657.  
  7658. CGI.pm also has some simple built-in protections against denial of
  7659. service attacks, but you must activate them before you can use them.
  7660. These take the form of two global variables in the CGI name space:
  7661.  
  7662. =over 4
  7663.  
  7664. =item B<$CGI::POST_MAX>
  7665.  
  7666. If set to a non-negative integer, this variable puts a ceiling
  7667. on the size of POSTings, in bytes.  If CGI.pm detects a POST
  7668. that is greater than the ceiling, it will immediately exit with an error
  7669. message.  This value will affect both ordinary POSTs and
  7670. multipart POSTs, meaning that it limits the maximum size of file
  7671. uploads as well.  You should set this to a reasonably high
  7672. value, such as 1 megabyte.
  7673.  
  7674. =item B<$CGI::DISABLE_UPLOADS>
  7675.  
  7676. If set to a non-zero value, this will disable file uploads
  7677. completely.  Other fill-out form values will work as usual.
  7678.  
  7679. =back
  7680.  
  7681. You can use these variables in either of two ways.
  7682.  
  7683. =over 4
  7684.  
  7685. =item B<1. On a script-by-script basis>
  7686.  
  7687. Set the variable at the top of the script, right after the "use" statement:
  7688.  
  7689.     use CGI qw/:standard/;
  7690.     use CGI::Carp 'fatalsToBrowser';
  7691.     $CGI::POST_MAX=1024 * 100;  # max 100K posts
  7692.     $CGI::DISABLE_UPLOADS = 1;  # no uploads
  7693.  
  7694. =item B<2. Globally for all scripts>
  7695.  
  7696. Open up CGI.pm, find the definitions for $POST_MAX and 
  7697. $DISABLE_UPLOADS, and set them to the desired values.  You'll 
  7698. find them towards the top of the file in a subroutine named 
  7699. initialize_globals().
  7700.  
  7701. =back
  7702.  
  7703. An attempt to send a POST larger than $POST_MAX bytes will cause
  7704. I<param()> to return an empty CGI parameter list.  You can test for
  7705. this event by checking I<cgi_error()>, either after you create the CGI
  7706. object or, if you are using the function-oriented interface, call
  7707. <param()> for the first time.  If the POST was intercepted, then
  7708. cgi_error() will return the message "413 POST too large".
  7709.  
  7710. This error message is actually defined by the HTTP protocol, and is
  7711. designed to be returned to the browser as the CGI script's status
  7712.  code.  For example:
  7713.  
  7714.    $uploaded_file = param('upload');
  7715.    if (!$uploaded_file && cgi_error()) {
  7716.       print header(-status=>cgi_error());
  7717.       exit 0;
  7718.    }
  7719.  
  7720. However it isn't clear that any browser currently knows what to do
  7721. with this status code.  It might be better just to create an
  7722. HTML page that warns the user of the problem.
  7723.  
  7724. =head1 COMPATIBILITY WITH CGI-LIB.PL
  7725.  
  7726. To make it easier to port existing programs that use cgi-lib.pl the
  7727. compatibility routine "ReadParse" is provided.  Porting is simple:
  7728.  
  7729. OLD VERSION
  7730.     require "cgi-lib.pl";
  7731.     &ReadParse;
  7732.     print "The value of the antique is $in{antique}.\n";
  7733.  
  7734. NEW VERSION
  7735.     use CGI;
  7736.     CGI::ReadParse();
  7737.     print "The value of the antique is $in{antique}.\n";
  7738.  
  7739. CGI.pm's ReadParse() routine creates a tied variable named %in,
  7740. which can be accessed to obtain the query variables.  Like
  7741. ReadParse, you can also provide your own variable.  Infrequently
  7742. used features of ReadParse, such as the creation of @in and $in 
  7743. variables, are not supported.
  7744.  
  7745. Once you use ReadParse, you can retrieve the query object itself
  7746. this way:
  7747.  
  7748.     $q = $in{CGI};
  7749.     print textfield(-name=>'wow',
  7750.             -value=>'does this really work?');
  7751.  
  7752. This allows you to start using the more interesting features
  7753. of CGI.pm without rewriting your old scripts from scratch.
  7754.  
  7755. =head1 AUTHOR INFORMATION
  7756.  
  7757. The GD.pm interface is copyright 1995-2007, Lincoln D. Stein.  It is
  7758. distributed under GPL and the Artistic License 2.0.
  7759.  
  7760. Address bug reports and comments to: lstein@cshl.org.  When sending
  7761. bug reports, please provide the version of CGI.pm, the version of
  7762. Perl, the name and version of your Web server, and the name and
  7763. version of the operating system you are using.  If the problem is even
  7764. remotely browser dependent, please provide information about the
  7765. affected browers as well.
  7766.  
  7767. =head1 CREDITS
  7768.  
  7769. Thanks very much to:
  7770.  
  7771. =over 4
  7772.  
  7773. =item Matt Heffron (heffron@falstaff.css.beckman.com)
  7774.  
  7775. =item James Taylor (james.taylor@srs.gov)
  7776.  
  7777. =item Scott Anguish <sanguish@digifix.com>
  7778.  
  7779. =item Mike Jewell (mlj3u@virginia.edu)
  7780.  
  7781. =item Timothy Shimmin (tes@kbs.citri.edu.au)
  7782.  
  7783. =item Joergen Haegg (jh@axis.se)
  7784.  
  7785. =item Laurent Delfosse (delfosse@delfosse.com)
  7786.  
  7787. =item Richard Resnick (applepi1@aol.com)
  7788.  
  7789. =item Craig Bishop (csb@barwonwater.vic.gov.au)
  7790.  
  7791. =item Tony Curtis (tc@vcpc.univie.ac.at)
  7792.  
  7793. =item Tim Bunce (Tim.Bunce@ig.co.uk)
  7794.  
  7795. =item Tom Christiansen (tchrist@convex.com)
  7796.  
  7797. =item Andreas Koenig (k@franz.ww.TU-Berlin.DE)
  7798.  
  7799. =item Tim MacKenzie (Tim.MacKenzie@fulcrum.com.au)
  7800.  
  7801. =item Kevin B. Hendricks (kbhend@dogwood.tyler.wm.edu)
  7802.  
  7803. =item Stephen Dahmen (joyfire@inxpress.net)
  7804.  
  7805. =item Ed Jordan (ed@fidalgo.net)
  7806.  
  7807. =item David Alan Pisoni (david@cnation.com)
  7808.  
  7809. =item Doug MacEachern (dougm@opengroup.org)
  7810.  
  7811. =item Robin Houston (robin@oneworld.org)
  7812.  
  7813. =item ...and many many more...
  7814.  
  7815. for suggestions and bug fixes.
  7816.  
  7817. =back
  7818.  
  7819. =head1 A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
  7820.  
  7821.  
  7822.     #!/usr/local/bin/perl
  7823.  
  7824.     use CGI ':standard';
  7825.  
  7826.     print header;
  7827.     print start_html("Example CGI.pm Form");
  7828.     print "<h1> Example CGI.pm Form</h1>\n";
  7829.         print_prompt();
  7830.     do_work();
  7831.     print_tail();
  7832.     print end_html;
  7833.  
  7834.     sub print_prompt {
  7835.        print start_form;
  7836.        print "<em>What's your name?</em><br>";
  7837.        print textfield('name');
  7838.        print checkbox('Not my real name');
  7839.  
  7840.        print "<p><em>Where can you find English Sparrows?</em><br>";
  7841.        print checkbox_group(
  7842.                  -name=>'Sparrow locations',
  7843.                  -values=>[England,France,Spain,Asia,Hoboken],
  7844.                  -linebreak=>'yes',
  7845.                  -defaults=>[England,Asia]);
  7846.  
  7847.        print "<p><em>How far can they fly?</em><br>",
  7848.         radio_group(
  7849.             -name=>'how far',
  7850.             -values=>['10 ft','1 mile','10 miles','real far'],
  7851.             -default=>'1 mile');
  7852.  
  7853.        print "<p><em>What's your favorite color?</em>  ";
  7854.        print popup_menu(-name=>'Color',
  7855.                     -values=>['black','brown','red','yellow'],
  7856.                     -default=>'red');
  7857.  
  7858.        print hidden('Reference','Monty Python and the Holy Grail');
  7859.  
  7860.        print "<p><em>What have you got there?</em><br>";
  7861.        print scrolling_list(
  7862.              -name=>'possessions',
  7863.              -values=>['A Coconut','A Grail','An Icon',
  7864.                    'A Sword','A Ticket'],
  7865.              -size=>5,
  7866.              -multiple=>'true');
  7867.  
  7868.        print "<p><em>Any parting comments?</em><br>";
  7869.        print textarea(-name=>'Comments',
  7870.                   -rows=>10,
  7871.                   -columns=>50);
  7872.  
  7873.        print "<p>",reset;
  7874.        print submit('Action','Shout');
  7875.        print submit('Action','Scream');
  7876.        print endform;
  7877.        print "<hr>\n";
  7878.     }
  7879.  
  7880.     sub do_work {
  7881.        my(@values,$key);
  7882.  
  7883.        print "<h2>Here are the current settings in this form</h2>";
  7884.  
  7885.        for $key (param) {
  7886.           print "<strong>$key</strong> -> ";
  7887.           @values = param($key);
  7888.           print join(", ",@values),"<br>\n";
  7889.       }
  7890.     }
  7891.  
  7892.     sub print_tail {
  7893.        print <<END;
  7894.     <hr>
  7895.     <address>Lincoln D. Stein</address><br>
  7896.     <a href="/">Home Page</a>
  7897.     END
  7898.     }
  7899.  
  7900. =head1 BUGS
  7901.  
  7902. Please report them.
  7903.  
  7904. =head1 SEE ALSO
  7905.  
  7906. L<CGI::Carp>, L<CGI::Fast>, L<CGI::Pretty>
  7907.  
  7908. =cut
  7909.  
  7910.